]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/asn1/ameth_lib.c
More tweaks for comments due indent issues
[thirdparty/openssl.git] / crypto / asn1 / ameth_lib.c
CommitLineData
2e597528 1/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
448be743
DSH
2 * project 2006.
3 */
4/* ====================================================================
5 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * 3. All advertising materials mentioning features or use of this
20 * software must display the following acknowledgment:
21 * "This product includes software developed by the OpenSSL Project
22 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
23 *
24 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25 * endorse or promote products derived from this software without
26 * prior written permission. For written permission, please contact
27 * licensing@OpenSSL.org.
28 *
29 * 5. Products derived from this software may not be called "OpenSSL"
30 * nor may "OpenSSL" appear in their names without prior written
31 * permission of the OpenSSL Project.
32 *
33 * 6. Redistributions of any form whatsoever must retain the following
34 * acknowledgment:
35 * "This product includes software developed by the OpenSSL Project
36 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
37 *
38 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
42 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49 * OF THE POSSIBILITY OF SUCH DAMAGE.
50 * ====================================================================
51 *
52 * This product includes cryptographic software written by Eric Young
53 * (eay@cryptsoft.com). This product includes software written by Tim
54 * Hudson (tjh@cryptsoft.com).
55 *
56 */
57
58#include <stdio.h>
59#include "cryptlib.h"
60#include <openssl/asn1t.h>
61#include <openssl/x509.h>
01b8b3c7
DSH
62#ifndef OPENSSL_NO_ENGINE
63#include <openssl/engine.h>
64#endif
448be743
DSH
65#include "asn1_locl.h"
66
67extern const EVP_PKEY_ASN1_METHOD rsa_asn1_meths[];
68extern const EVP_PKEY_ASN1_METHOD dsa_asn1_meths[];
6f81892e 69extern const EVP_PKEY_ASN1_METHOD dh_asn1_meth;
afb14cda 70extern const EVP_PKEY_ASN1_METHOD dhx_asn1_meth;
448be743 71extern const EVP_PKEY_ASN1_METHOD eckey_asn1_meth;
74633553 72extern const EVP_PKEY_ASN1_METHOD hmac_asn1_meth;
c8ef656d 73extern const EVP_PKEY_ASN1_METHOD cmac_asn1_meth;
448be743
DSH
74
75/* Keep this sorted in type order !! */
9e4d0f0b 76static const EVP_PKEY_ASN1_METHOD *standard_methods[] =
448be743 77 {
db98bbc1 78#ifndef OPENSSL_NO_RSA
448be743
DSH
79 &rsa_asn1_meths[0],
80 &rsa_asn1_meths[1],
db98bbc1
DSH
81#endif
82#ifndef OPENSSL_NO_DH
6f81892e 83 &dh_asn1_meth,
db98bbc1
DSH
84#endif
85#ifndef OPENSSL_NO_DSA
448be743
DSH
86 &dsa_asn1_meths[0],
87 &dsa_asn1_meths[1],
88 &dsa_asn1_meths[2],
89 &dsa_asn1_meths[3],
90 &dsa_asn1_meths[4],
db98bbc1
DSH
91#endif
92#ifndef OPENSSL_NO_EC
74633553 93 &eckey_asn1_meth,
db98bbc1 94#endif
c8ef656d 95 &hmac_asn1_meth,
afb14cda
DSH
96 &cmac_asn1_meth,
97#ifndef OPENSSL_NO_DH
98 &dhx_asn1_meth
99#endif
448be743
DSH
100 };
101
18e377b4 102typedef int sk_cmp_fn_type(const char * const *a, const char * const *b);
d4cdbab9 103DECLARE_STACK_OF(EVP_PKEY_ASN1_METHOD)
5ce278a7 104static STACK_OF(EVP_PKEY_ASN1_METHOD) *app_methods = NULL;
18e377b4
DSH
105
106
107
448be743
DSH
108#ifdef TEST
109void main()
110 {
111 int i;
112 for (i = 0;
113 i < sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
114 i++)
6f81892e
DSH
115 fprintf(stderr, "Number %d id=%d (%s)\n", i,
116 standard_methods[i]->pkey_id,
117 OBJ_nid2sn(standard_methods[i]->pkey_id));
448be743
DSH
118 }
119#endif
120
606f6c47 121DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
e19106f5 122 const EVP_PKEY_ASN1_METHOD *, ameth);
babb3798 123
448be743 124static int ameth_cmp(const EVP_PKEY_ASN1_METHOD * const *a,
babb3798 125 const EVP_PKEY_ASN1_METHOD * const *b)
448be743
DSH
126 {
127 return ((*a)->pkey_id - (*b)->pkey_id);
128 }
129
606f6c47 130IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_ASN1_METHOD *,
e19106f5 131 const EVP_PKEY_ASN1_METHOD *, ameth);
babb3798 132
e4263314
DSH
133int EVP_PKEY_asn1_get_count(void)
134 {
135 int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
136 if (app_methods)
5ce278a7 137 num += sk_EVP_PKEY_ASN1_METHOD_num(app_methods);
e4263314
DSH
138 return num;
139 }
140
141const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx)
142 {
143 int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
144 if (idx < 0)
145 return NULL;
146 if (idx < num)
147 return standard_methods[idx];
148 idx -= num;
5ce278a7 149 return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
e4263314
DSH
150 }
151
01b8b3c7 152static const EVP_PKEY_ASN1_METHOD *pkey_asn1_find(int type)
448be743 153 {
606f6c47
DSH
154 EVP_PKEY_ASN1_METHOD tmp;
155 const EVP_PKEY_ASN1_METHOD *t = &tmp, **ret;
448be743 156 tmp.pkey_id = type;
18e377b4
DSH
157 if (app_methods)
158 {
159 int idx;
5ce278a7 160 idx = sk_EVP_PKEY_ASN1_METHOD_find(app_methods, &tmp);
86377906 161 if (idx >= 0)
5ce278a7 162 return sk_EVP_PKEY_ASN1_METHOD_value(app_methods, idx);
18e377b4 163 }
e19106f5 164 ret = OBJ_bsearch_ameth(&t, standard_methods,
babb3798 165 sizeof(standard_methods)
e19106f5 166 /sizeof(EVP_PKEY_ASN1_METHOD *));
6f81892e
DSH
167 if (!ret || !*ret)
168 return NULL;
448be743
DSH
169 return *ret;
170 }
171
01b8b3c7
DSH
172/* Find an implementation of an ASN1 algorithm. If 'pe' is not NULL
173 * also search through engines and set *pe to a functional reference
174 * to the engine implementing 'type' or NULL if no engine implements
175 * it.
176 */
177
178const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type)
179 {
180 const EVP_PKEY_ASN1_METHOD *t;
01b8b3c7
DSH
181
182 for (;;)
183 {
184 t = pkey_asn1_find(type);
185 if (!t || !(t->pkey_flags & ASN1_PKEY_ALIAS))
186 break;
187 type = t->pkey_base_id;
188 }
189 if (pe)
190 {
191#ifndef OPENSSL_NO_ENGINE
d3f17e5e 192 ENGINE *e;
01b8b3c7
DSH
193 /* type will contain the final unaliased type */
194 e = ENGINE_get_pkey_asn1_meth_engine(type);
195 if (e)
196 {
197 *pe = e;
198 return ENGINE_get_pkey_asn1_meth(e, type);
199 }
200#endif
201 *pe = NULL;
202 }
203 return t;
204 }
205
206const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe,
207 const char *str, int len)
e4263314
DSH
208 {
209 int i;
210 const EVP_PKEY_ASN1_METHOD *ameth;
f5cda4cb
DSH
211 if (len == -1)
212 len = strlen(str);
01b8b3c7
DSH
213 if (pe)
214 {
215#ifndef OPENSSL_NO_ENGINE
216 ENGINE *e;
2f0550c4
DSH
217 ameth = ENGINE_pkey_asn1_find_str(&e, str, len);
218 if (ameth)
01b8b3c7 219 {
2f0550c4
DSH
220 /* Convert structural into
221 * functional reference
222 */
223 if (!ENGINE_init(e))
224 ameth = NULL;
225 ENGINE_free(e);
226 *pe = e;
227 return ameth;
01b8b3c7
DSH
228 }
229#endif
230 *pe = NULL;
231 }
e4263314
DSH
232 for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
233 {
234 ameth = EVP_PKEY_asn1_get0(i);
235 if (ameth->pkey_flags & ASN1_PKEY_ALIAS)
236 continue;
c20276e4 237 if (((int)strlen(ameth->pem_str) == len) &&
e4263314
DSH
238 !strncasecmp(ameth->pem_str, str, len))
239 return ameth;
240 }
241 return NULL;
242 }
243
e46691a0 244int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth)
18e377b4
DSH
245 {
246 if (app_methods == NULL)
247 {
5ce278a7 248 app_methods = sk_EVP_PKEY_ASN1_METHOD_new(ameth_cmp);
18e377b4
DSH
249 if (!app_methods)
250 return 0;
251 }
5ce278a7 252 if (!sk_EVP_PKEY_ASN1_METHOD_push(app_methods, ameth))
18e377b4 253 return 0;
5ce278a7 254 sk_EVP_PKEY_ASN1_METHOD_sort(app_methods);
18e377b4
DSH
255 return 1;
256 }
257
e46691a0
DSH
258int EVP_PKEY_asn1_add_alias(int to, int from)
259 {
260 EVP_PKEY_ASN1_METHOD *ameth;
cddaba8e 261 ameth = EVP_PKEY_asn1_new(from, ASN1_PKEY_ALIAS, NULL, NULL);
e46691a0
DSH
262 if (!ameth)
263 return 0;
264 ameth->pkey_base_id = to;
d2aea038
DSH
265 if (!EVP_PKEY_asn1_add0(ameth))
266 {
267 EVP_PKEY_asn1_free(ameth);
268 return 0;
269 }
270 return 1;
e46691a0
DSH
271 }
272
0b33dac3
DSH
273int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *ppkey_base_id, int *ppkey_flags,
274 const char **pinfo, const char **ppem_str,
275 const EVP_PKEY_ASN1_METHOD *ameth)
276 {
277 if (!ameth)
278 return 0;
279 if (ppkey_id)
280 *ppkey_id = ameth->pkey_id;
281 if (ppkey_base_id)
282 *ppkey_base_id = ameth->pkey_base_id;
283 if (ppkey_flags)
284 *ppkey_flags = ameth->pkey_flags;
285 if (pinfo)
286 *pinfo = ameth->info;
287 if (ppem_str)
288 *ppem_str = ameth->pem_str;
289 return 1;
290 }
291
e77dbf32
DSH
292const EVP_PKEY_ASN1_METHOD* EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
293 {
294 return pkey->ameth;
295 }
296
cddaba8e 297EVP_PKEY_ASN1_METHOD* EVP_PKEY_asn1_new(int id, int flags,
d82e2718 298 const char *pem_str, const char *info)
18e377b4
DSH
299 {
300 EVP_PKEY_ASN1_METHOD *ameth;
301 ameth = OPENSSL_malloc(sizeof(EVP_PKEY_ASN1_METHOD));
302 if (!ameth)
303 return NULL;
304
3231e42d
DSH
305 memset(ameth, 0, sizeof(EVP_PKEY_ASN1_METHOD));
306
18e377b4
DSH
307 ameth->pkey_id = id;
308 ameth->pkey_base_id = id;
cddaba8e 309 ameth->pkey_flags = flags | ASN1_PKEY_DYNAMIC;
d82e2718
DSH
310
311 if (info)
312 {
313 ameth->info = BUF_strdup(info);
314 if (!ameth->info)
315 goto err;
316 }
5656f33c 317 else
ec7d16ff 318 ameth->info = NULL;
d82e2718
DSH
319
320 if (pem_str)
321 {
322 ameth->pem_str = BUF_strdup(pem_str);
323 if (!ameth->pem_str)
324 goto err;
325 }
5656f33c 326 else
ec7d16ff 327 ameth->pem_str = NULL;
e69adea5 328
18e377b4
DSH
329 ameth->pub_decode = 0;
330 ameth->pub_encode = 0;
331 ameth->pub_cmp = 0;
332 ameth->pub_print = 0;
333
18e377b4
DSH
334 ameth->priv_decode = 0;
335 ameth->priv_encode = 0;
336 ameth->priv_print = 0;
18e377b4 337
b37a68cc
DSH
338 ameth->old_priv_encode = 0;
339 ameth->old_priv_decode = 0;
340
3231e42d
DSH
341 ameth->item_verify = 0;
342 ameth->item_sign = 0;
343
18e377b4
DSH
344 ameth->pkey_size = 0;
345 ameth->pkey_bits = 0;
346
347 ameth->param_decode = 0;
348 ameth->param_encode = 0;
349 ameth->param_missing = 0;
350 ameth->param_copy = 0;
351 ameth->param_cmp = 0;
352 ameth->param_print = 0;
353
18e377b4
DSH
354 ameth->pkey_free = 0;
355 ameth->pkey_ctrl = 0;
356
357 return ameth;
d82e2718
DSH
358
359 err:
360
361 EVP_PKEY_asn1_free(ameth);
362 return NULL;
363
364 }
365
e69adea5
DSH
366void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst,
367 const EVP_PKEY_ASN1_METHOD *src)
368 {
369
370 dst->pub_decode = src->pub_decode;
371 dst->pub_encode = src->pub_encode;
372 dst->pub_cmp = src->pub_cmp;
373 dst->pub_print = src->pub_print;
374
375 dst->priv_decode = src->priv_decode;
376 dst->priv_encode = src->priv_encode;
377 dst->priv_print = src->priv_print;
378
379 dst->old_priv_encode = src->old_priv_encode;
380 dst->old_priv_decode = src->old_priv_decode;
381
382 dst->pkey_size = src->pkey_size;
383 dst->pkey_bits = src->pkey_bits;
384
385 dst->param_decode = src->param_decode;
386 dst->param_encode = src->param_encode;
387 dst->param_missing = src->param_missing;
388 dst->param_copy = src->param_copy;
389 dst->param_cmp = src->param_cmp;
390 dst->param_print = src->param_print;
391
392 dst->pkey_free = src->pkey_free;
393 dst->pkey_ctrl = src->pkey_ctrl;
394
3231e42d
DSH
395 dst->item_sign = src->item_sign;
396 dst->item_verify = src->item_verify;
397
e69adea5
DSH
398 }
399
d82e2718
DSH
400void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth)
401 {
402 if (ameth && (ameth->pkey_flags & ASN1_PKEY_DYNAMIC))
403 {
404 if (ameth->pem_str)
405 OPENSSL_free(ameth->pem_str);
406 if (ameth->info)
407 OPENSSL_free(ameth->info);
408 OPENSSL_free(ameth);
409 }
18e377b4
DSH
410 }
411
412void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth,
413 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub),
414 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk),
415 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
416 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
417 ASN1_PCTX *pctx),
418 int (*pkey_size)(const EVP_PKEY *pk),
419 int (*pkey_bits)(const EVP_PKEY *pk))
420 {
421 ameth->pub_decode = pub_decode;
422 ameth->pub_encode = pub_encode;
423 ameth->pub_cmp = pub_cmp;
424 ameth->pub_print = pub_print;
425 ameth->pkey_size = pkey_size;
426 ameth->pkey_bits = pkey_bits;
427 }
428
429void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth,
430 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf),
431 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk),
432 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
433 ASN1_PCTX *pctx))
434 {
435 ameth->priv_decode = priv_decode;
436 ameth->priv_encode = priv_encode;
437 ameth->priv_print = priv_print;
438 }
439
440void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth,
db98bbc1 441 int (*param_decode)(EVP_PKEY *pkey,
6343829a 442 const unsigned char **pder, int derlen),
db98bbc1 443 int (*param_encode)(const EVP_PKEY *pkey, unsigned char **pder),
18e377b4
DSH
444 int (*param_missing)(const EVP_PKEY *pk),
445 int (*param_copy)(EVP_PKEY *to, const EVP_PKEY *from),
446 int (*param_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
447 int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
6343829a 448 ASN1_PCTX *pctx))
18e377b4
DSH
449 {
450 ameth->param_decode = param_decode;
451 ameth->param_encode = param_encode;
452 ameth->param_missing = param_missing;
453 ameth->param_copy = param_copy;
454 ameth->param_cmp = param_cmp;
455 ameth->param_print = param_print;
456 }
457
458void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth,
459 void (*pkey_free)(EVP_PKEY *pkey))
460 {
461 ameth->pkey_free = pkey_free;
462 }
463
464void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
492a9e24 465 int (*pkey_ctrl)(EVP_PKEY *pkey, int op,
18e377b4
DSH
466 long arg1, void *arg2))
467 {
468 ameth->pkey_ctrl = pkey_ctrl;
469 }
2514fa79
DSH
470
471void EVP_PKEY_asn1_set_security_bits(EVP_PKEY_ASN1_METHOD *ameth,
472 int (*pkey_security_bits)(const EVP_PKEY *pk))
473 {
474 ameth->pkey_security_bits = pkey_security_bits;
475 }
476