/src/openssl111/crypto/asn1/ameth_lib.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2006-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 "e_os.h" /* for strncasecmp */ |
11 | | #include "internal/cryptlib.h" |
12 | | #include <stdio.h> |
13 | | #include <openssl/asn1t.h> |
14 | | #include <openssl/x509.h> |
15 | | #include <openssl/engine.h> |
16 | | #include "crypto/asn1.h" |
17 | | #include "crypto/evp.h" |
18 | | |
19 | | #include "standard_methods.h" |
20 | | |
21 | | typedef int sk_cmp_fn_type(const char *const *a, const char *const *b); |
22 | | static STACK_OF(EVP_PKEY_ASN1_METHOD) *app_methods = NULL; |
23 | | |
24 | | DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *, |
25 | | const EVP_PKEY_ASN1_METHOD *, ameth); |
26 | | |
27 | | static int ameth_cmp(const EVP_PKEY_ASN1_METHOD *const *a, |
28 | | const EVP_PKEY_ASN1_METHOD *const *b) |
29 | 0 | { |
30 | 0 | return ((*a)->pkey_id - (*b)->pkey_id); |
31 | 0 | } |
32 | | |
33 | | IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *, |
34 | | const EVP_PKEY_ASN1_METHOD *, ameth); |
35 | | |
36 | | int EVP_PKEY_asn1_get_count(void) |
37 | 0 | { |
38 | 0 | int num = OSSL_NELEM(standard_methods); |
39 | 0 | if (app_methods) |
40 | 0 | num += sk_EVP_PKEY_ASN1_METHOD_num(app_methods); |
41 | 0 | return num; |
42 | 0 | } |
43 | | |
44 | | const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx) |
45 | 0 | { |
46 | 0 | int num = OSSL_NELEM(standard_methods); |
47 | 0 | if (idx < 0) |
48 | 0 | return NULL; |
49 | 0 | if (idx < num) |
50 | 0 | return standard_methods[idx]; |
51 | 0 | idx -= num; |
52 | 0 | return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx); |
53 | 0 | } |
54 | | |
55 | | static const EVP_PKEY_ASN1_METHOD *pkey_asn1_find(int type) |
56 | 0 | { |
57 | 0 | EVP_PKEY_ASN1_METHOD tmp; |
58 | 0 | const EVP_PKEY_ASN1_METHOD *t = &tmp, **ret; |
59 | 0 | tmp.pkey_id = type; |
60 | 0 | if (app_methods) { |
61 | 0 | int idx; |
62 | 0 | idx = sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp); |
63 | 0 | if (idx >= 0) |
64 | 0 | return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx); |
65 | 0 | } |
66 | 0 | ret = OBJ_bsearch_ameth(&t, standard_methods, OSSL_NELEM(standard_methods)); |
67 | 0 | if (!ret || !*ret) |
68 | 0 | return NULL; |
69 | 0 | return *ret; |
70 | 0 | } |
71 | | |
72 | | /* |
73 | | * Find an implementation of an ASN1 algorithm. If 'pe' is not NULL also |
74 | | * search through engines and set *pe to a functional reference to the engine |
75 | | * implementing 'type' or NULL if no engine implements it. |
76 | | */ |
77 | | |
78 | | const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type) |
79 | 0 | { |
80 | 0 | const EVP_PKEY_ASN1_METHOD *t; |
81 | |
|
82 | 0 | for (;;) { |
83 | 0 | t = pkey_asn1_find(type); |
84 | 0 | if (!t || !(t->pkey_flags & ASN1_PKEY_ALIAS)) |
85 | 0 | break; |
86 | 0 | type = t->pkey_base_id; |
87 | 0 | } |
88 | 0 | if (pe) { |
89 | 0 | #ifndef OPENSSL_NO_ENGINE |
90 | 0 | ENGINE *e; |
91 | | /* type will contain the final unaliased type */ |
92 | 0 | e = ENGINE_get_pkey_asn1_meth_engine(type); |
93 | 0 | if (e) { |
94 | 0 | *pe = e; |
95 | 0 | return ENGINE_get_pkey_asn1_meth(e, type); |
96 | 0 | } |
97 | 0 | #endif |
98 | 0 | *pe = NULL; |
99 | 0 | } |
100 | 0 | return t; |
101 | 0 | } |
102 | | |
103 | | const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe, |
104 | | const char *str, int len) |
105 | 0 | { |
106 | 0 | int i; |
107 | 0 | const EVP_PKEY_ASN1_METHOD *ameth = NULL; |
108 | |
|
109 | 0 | if (len == -1) |
110 | 0 | len = strlen(str); |
111 | 0 | if (pe) { |
112 | 0 | #ifndef OPENSSL_NO_ENGINE |
113 | 0 | ENGINE *e; |
114 | 0 | ameth = ENGINE_pkey_asn1_find_str(&e, str, len); |
115 | 0 | if (ameth) { |
116 | | /* |
117 | | * Convert structural into functional reference |
118 | | */ |
119 | 0 | if (!ENGINE_init(e)) |
120 | 0 | ameth = NULL; |
121 | 0 | ENGINE_free(e); |
122 | 0 | *pe = e; |
123 | 0 | return ameth; |
124 | 0 | } |
125 | 0 | #endif |
126 | 0 | *pe = NULL; |
127 | 0 | } |
128 | 0 | for (i = EVP_PKEY_asn1_get_count(); i-- > 0; ) { |
129 | 0 | ameth = EVP_PKEY_asn1_get0(i); |
130 | 0 | if (ameth->pkey_flags & ASN1_PKEY_ALIAS) |
131 | 0 | continue; |
132 | 0 | if ((int)strlen(ameth->pem_str) == len |
133 | 0 | && strncasecmp(ameth->pem_str, str, len) == 0) |
134 | 0 | return ameth; |
135 | 0 | } |
136 | 0 | return NULL; |
137 | 0 | } |
138 | | |
139 | | int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth) |
140 | 0 | { |
141 | 0 | EVP_PKEY_ASN1_METHOD tmp = { 0, }; |
142 | | |
143 | | /* |
144 | | * One of the following must be true: |
145 | | * |
146 | | * pem_str == NULL AND ASN1_PKEY_ALIAS is set |
147 | | * pem_str != NULL AND ASN1_PKEY_ALIAS is clear |
148 | | * |
149 | | * Anything else is an error and may lead to a corrupt ASN1 method table |
150 | | */ |
151 | 0 | if (!((ameth->pem_str == NULL |
152 | 0 | && (ameth->pkey_flags & ASN1_PKEY_ALIAS) != 0) |
153 | 0 | || (ameth->pem_str != NULL |
154 | 0 | && (ameth->pkey_flags & ASN1_PKEY_ALIAS) == 0))) { |
155 | 0 | EVPerr(EVP_F_EVP_PKEY_ASN1_ADD0, ERR_R_PASSED_INVALID_ARGUMENT); |
156 | 0 | return 0; |
157 | 0 | } |
158 | | |
159 | 0 | if (app_methods == NULL) { |
160 | 0 | app_methods = sk_EVP_PKEY_ASN1_METHOD_new(ameth_cmp); |
161 | 0 | if (app_methods == NULL) |
162 | 0 | return 0; |
163 | 0 | } |
164 | | |
165 | 0 | tmp.pkey_id = ameth->pkey_id; |
166 | 0 | if (sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp) >= 0) { |
167 | 0 | EVPerr(EVP_F_EVP_PKEY_ASN1_ADD0, |
168 | 0 | EVP_R_PKEY_APPLICATION_ASN1_METHOD_ALREADY_REGISTERED); |
169 | 0 | return 0; |
170 | 0 | } |
171 | | |
172 | 0 | if (!sk_EVP_PKEY_ASN1_METHOD_push(app_methods, ameth)) |
173 | 0 | return 0; |
174 | 0 | sk_EVP_PKEY_ASN1_METHOD_sort(app_methods); |
175 | 0 | return 1; |
176 | 0 | } |
177 | | |
178 | | int EVP_PKEY_asn1_add_alias(int to, int from) |
179 | 0 | { |
180 | 0 | EVP_PKEY_ASN1_METHOD *ameth; |
181 | 0 | ameth = EVP_PKEY_asn1_new(from, ASN1_PKEY_ALIAS, NULL, NULL); |
182 | 0 | if (ameth == NULL) |
183 | 0 | return 0; |
184 | 0 | ameth->pkey_base_id = to; |
185 | 0 | if (!EVP_PKEY_asn1_add0(ameth)) { |
186 | 0 | EVP_PKEY_asn1_free(ameth); |
187 | 0 | return 0; |
188 | 0 | } |
189 | 0 | return 1; |
190 | 0 | } |
191 | | |
192 | | int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *ppkey_base_id, |
193 | | int *ppkey_flags, const char **pinfo, |
194 | | const char **ppem_str, |
195 | | const EVP_PKEY_ASN1_METHOD *ameth) |
196 | 0 | { |
197 | 0 | if (!ameth) |
198 | 0 | return 0; |
199 | 0 | if (ppkey_id) |
200 | 0 | *ppkey_id = ameth->pkey_id; |
201 | 0 | if (ppkey_base_id) |
202 | 0 | *ppkey_base_id = ameth->pkey_base_id; |
203 | 0 | if (ppkey_flags) |
204 | 0 | *ppkey_flags = ameth->pkey_flags; |
205 | 0 | if (pinfo) |
206 | 0 | *pinfo = ameth->info; |
207 | 0 | if (ppem_str) |
208 | 0 | *ppem_str = ameth->pem_str; |
209 | 0 | return 1; |
210 | 0 | } |
211 | | |
212 | | const EVP_PKEY_ASN1_METHOD *EVP_PKEY_get0_asn1(const EVP_PKEY *pkey) |
213 | 0 | { |
214 | 0 | return pkey->ameth; |
215 | 0 | } |
216 | | |
217 | | EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_new(int id, int flags, |
218 | | const char *pem_str, const char *info) |
219 | 0 | { |
220 | 0 | EVP_PKEY_ASN1_METHOD *ameth = OPENSSL_zalloc(sizeof(*ameth)); |
221 | |
|
222 | 0 | if (ameth == NULL) |
223 | 0 | return NULL; |
224 | | |
225 | 0 | ameth->pkey_id = id; |
226 | 0 | ameth->pkey_base_id = id; |
227 | 0 | ameth->pkey_flags = flags | ASN1_PKEY_DYNAMIC; |
228 | |
|
229 | 0 | if (info) { |
230 | 0 | ameth->info = OPENSSL_strdup(info); |
231 | 0 | if (!ameth->info) |
232 | 0 | goto err; |
233 | 0 | } |
234 | | |
235 | 0 | if (pem_str) { |
236 | 0 | ameth->pem_str = OPENSSL_strdup(pem_str); |
237 | 0 | if (!ameth->pem_str) |
238 | 0 | goto err; |
239 | 0 | } |
240 | | |
241 | 0 | return ameth; |
242 | | |
243 | 0 | err: |
244 | 0 | EVP_PKEY_asn1_free(ameth); |
245 | 0 | return NULL; |
246 | |
|
247 | 0 | } |
248 | | |
249 | | void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst, |
250 | | const EVP_PKEY_ASN1_METHOD *src) |
251 | 0 | { |
252 | |
|
253 | 0 | dst->pub_decode = src->pub_decode; |
254 | 0 | dst->pub_encode = src->pub_encode; |
255 | 0 | dst->pub_cmp = src->pub_cmp; |
256 | 0 | dst->pub_print = src->pub_print; |
257 | |
|
258 | 0 | dst->priv_decode = src->priv_decode; |
259 | 0 | dst->priv_encode = src->priv_encode; |
260 | 0 | dst->priv_print = src->priv_print; |
261 | |
|
262 | 0 | dst->old_priv_encode = src->old_priv_encode; |
263 | 0 | dst->old_priv_decode = src->old_priv_decode; |
264 | |
|
265 | 0 | dst->pkey_size = src->pkey_size; |
266 | 0 | dst->pkey_bits = src->pkey_bits; |
267 | |
|
268 | 0 | dst->param_decode = src->param_decode; |
269 | 0 | dst->param_encode = src->param_encode; |
270 | 0 | dst->param_missing = src->param_missing; |
271 | 0 | dst->param_copy = src->param_copy; |
272 | 0 | dst->param_cmp = src->param_cmp; |
273 | 0 | dst->param_print = src->param_print; |
274 | |
|
275 | 0 | dst->pkey_free = src->pkey_free; |
276 | 0 | dst->pkey_ctrl = src->pkey_ctrl; |
277 | |
|
278 | 0 | dst->item_sign = src->item_sign; |
279 | 0 | dst->item_verify = src->item_verify; |
280 | |
|
281 | 0 | dst->siginf_set = src->siginf_set; |
282 | |
|
283 | 0 | dst->pkey_check = src->pkey_check; |
284 | |
|
285 | 0 | } |
286 | | |
287 | | void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth) |
288 | 0 | { |
289 | 0 | if (ameth && (ameth->pkey_flags & ASN1_PKEY_DYNAMIC)) { |
290 | 0 | OPENSSL_free(ameth->pem_str); |
291 | 0 | OPENSSL_free(ameth->info); |
292 | 0 | OPENSSL_free(ameth); |
293 | 0 | } |
294 | 0 | } |
295 | | |
296 | | void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth, |
297 | | int (*pub_decode) (EVP_PKEY *pk, |
298 | | X509_PUBKEY *pub), |
299 | | int (*pub_encode) (X509_PUBKEY *pub, |
300 | | const EVP_PKEY *pk), |
301 | | int (*pub_cmp) (const EVP_PKEY *a, |
302 | | const EVP_PKEY *b), |
303 | | int (*pub_print) (BIO *out, |
304 | | const EVP_PKEY *pkey, |
305 | | int indent, ASN1_PCTX *pctx), |
306 | | int (*pkey_size) (const EVP_PKEY *pk), |
307 | | int (*pkey_bits) (const EVP_PKEY *pk)) |
308 | 0 | { |
309 | 0 | ameth->pub_decode = pub_decode; |
310 | 0 | ameth->pub_encode = pub_encode; |
311 | 0 | ameth->pub_cmp = pub_cmp; |
312 | 0 | ameth->pub_print = pub_print; |
313 | 0 | ameth->pkey_size = pkey_size; |
314 | 0 | ameth->pkey_bits = pkey_bits; |
315 | 0 | } |
316 | | |
317 | | void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth, |
318 | | int (*priv_decode) (EVP_PKEY *pk, |
319 | | const PKCS8_PRIV_KEY_INFO |
320 | | *p8inf), |
321 | | int (*priv_encode) (PKCS8_PRIV_KEY_INFO *p8, |
322 | | const EVP_PKEY *pk), |
323 | | int (*priv_print) (BIO *out, |
324 | | const EVP_PKEY *pkey, |
325 | | int indent, |
326 | | ASN1_PCTX *pctx)) |
327 | 0 | { |
328 | 0 | ameth->priv_decode = priv_decode; |
329 | 0 | ameth->priv_encode = priv_encode; |
330 | 0 | ameth->priv_print = priv_print; |
331 | 0 | } |
332 | | |
333 | | void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth, |
334 | | int (*param_decode) (EVP_PKEY *pkey, |
335 | | const unsigned char **pder, |
336 | | int derlen), |
337 | | int (*param_encode) (const EVP_PKEY *pkey, |
338 | | unsigned char **pder), |
339 | | int (*param_missing) (const EVP_PKEY *pk), |
340 | | int (*param_copy) (EVP_PKEY *to, |
341 | | const EVP_PKEY *from), |
342 | | int (*param_cmp) (const EVP_PKEY *a, |
343 | | const EVP_PKEY *b), |
344 | | int (*param_print) (BIO *out, |
345 | | const EVP_PKEY *pkey, |
346 | | int indent, ASN1_PCTX *pctx)) |
347 | 0 | { |
348 | 0 | ameth->param_decode = param_decode; |
349 | 0 | ameth->param_encode = param_encode; |
350 | 0 | ameth->param_missing = param_missing; |
351 | 0 | ameth->param_copy = param_copy; |
352 | 0 | ameth->param_cmp = param_cmp; |
353 | 0 | ameth->param_print = param_print; |
354 | 0 | } |
355 | | |
356 | | void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth, |
357 | | void (*pkey_free) (EVP_PKEY *pkey)) |
358 | 0 | { |
359 | 0 | ameth->pkey_free = pkey_free; |
360 | 0 | } |
361 | | |
362 | | void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth, |
363 | | int (*pkey_ctrl) (EVP_PKEY *pkey, int op, |
364 | | long arg1, void *arg2)) |
365 | 0 | { |
366 | 0 | ameth->pkey_ctrl = pkey_ctrl; |
367 | 0 | } |
368 | | |
369 | | void EVP_PKEY_asn1_set_security_bits(EVP_PKEY_ASN1_METHOD *ameth, |
370 | | int (*pkey_security_bits) (const EVP_PKEY |
371 | | *pk)) |
372 | 0 | { |
373 | 0 | ameth->pkey_security_bits = pkey_security_bits; |
374 | 0 | } |
375 | | |
376 | | void EVP_PKEY_asn1_set_item(EVP_PKEY_ASN1_METHOD *ameth, |
377 | | int (*item_verify) (EVP_MD_CTX *ctx, |
378 | | const ASN1_ITEM *it, |
379 | | void *asn, |
380 | | X509_ALGOR *a, |
381 | | ASN1_BIT_STRING *sig, |
382 | | EVP_PKEY *pkey), |
383 | | int (*item_sign) (EVP_MD_CTX *ctx, |
384 | | const ASN1_ITEM *it, |
385 | | void *asn, |
386 | | X509_ALGOR *alg1, |
387 | | X509_ALGOR *alg2, |
388 | | ASN1_BIT_STRING *sig)) |
389 | 0 | { |
390 | 0 | ameth->item_sign = item_sign; |
391 | 0 | ameth->item_verify = item_verify; |
392 | 0 | } |
393 | | |
394 | | void EVP_PKEY_asn1_set_siginf(EVP_PKEY_ASN1_METHOD *ameth, |
395 | | int (*siginf_set) (X509_SIG_INFO *siginf, |
396 | | const X509_ALGOR *alg, |
397 | | const ASN1_STRING *sig)) |
398 | 0 | { |
399 | 0 | ameth->siginf_set = siginf_set; |
400 | 0 | } |
401 | | |
402 | | void EVP_PKEY_asn1_set_check(EVP_PKEY_ASN1_METHOD *ameth, |
403 | | int (*pkey_check) (const EVP_PKEY *pk)) |
404 | 0 | { |
405 | 0 | ameth->pkey_check = pkey_check; |
406 | 0 | } |
407 | | |
408 | | void EVP_PKEY_asn1_set_public_check(EVP_PKEY_ASN1_METHOD *ameth, |
409 | | int (*pkey_pub_check) (const EVP_PKEY *pk)) |
410 | 0 | { |
411 | 0 | ameth->pkey_public_check = pkey_pub_check; |
412 | 0 | } |
413 | | |
414 | | void EVP_PKEY_asn1_set_param_check(EVP_PKEY_ASN1_METHOD *ameth, |
415 | | int (*pkey_param_check) (const EVP_PKEY *pk)) |
416 | 0 | { |
417 | 0 | ameth->pkey_param_check = pkey_param_check; |
418 | 0 | } |
419 | | |
420 | | void EVP_PKEY_asn1_set_set_priv_key(EVP_PKEY_ASN1_METHOD *ameth, |
421 | | int (*set_priv_key) (EVP_PKEY *pk, |
422 | | const unsigned char |
423 | | *priv, |
424 | | size_t len)) |
425 | 0 | { |
426 | 0 | ameth->set_priv_key = set_priv_key; |
427 | 0 | } |
428 | | |
429 | | void EVP_PKEY_asn1_set_set_pub_key(EVP_PKEY_ASN1_METHOD *ameth, |
430 | | int (*set_pub_key) (EVP_PKEY *pk, |
431 | | const unsigned char *pub, |
432 | | size_t len)) |
433 | 0 | { |
434 | 0 | ameth->set_pub_key = set_pub_key; |
435 | 0 | } |
436 | | |
437 | | void EVP_PKEY_asn1_set_get_priv_key(EVP_PKEY_ASN1_METHOD *ameth, |
438 | | int (*get_priv_key) (const EVP_PKEY *pk, |
439 | | unsigned char *priv, |
440 | | size_t *len)) |
441 | 0 | { |
442 | 0 | ameth->get_priv_key = get_priv_key; |
443 | 0 | } |
444 | | |
445 | | void EVP_PKEY_asn1_set_get_pub_key(EVP_PKEY_ASN1_METHOD *ameth, |
446 | | int (*get_pub_key) (const EVP_PKEY *pk, |
447 | | unsigned char *pub, |
448 | | size_t *len)) |
449 | 0 | { |
450 | 0 | ameth->get_pub_key = get_pub_key; |
451 | 0 | } |