Prepend signature name in dgst output.
[openssl.git] / crypto / asn1 / ameth_lib.c
1 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
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>
62 #ifndef OPENSSL_NO_ENGINE
63 #include <openssl/engine.h>
64 #endif
65 #include "asn1_locl.h"
66
67 extern const EVP_PKEY_ASN1_METHOD rsa_asn1_meths[];
68 extern const EVP_PKEY_ASN1_METHOD dsa_asn1_meths[];
69 extern const EVP_PKEY_ASN1_METHOD dh_asn1_meth;
70 extern const EVP_PKEY_ASN1_METHOD eckey_asn1_meth;
71 extern const EVP_PKEY_ASN1_METHOD hmac_asn1_meth;
72
73 /* Keep this sorted in type order !! */
74 static const EVP_PKEY_ASN1_METHOD *standard_methods[] = 
75         {
76 #ifndef OPENSSL_NO_RSA
77         &rsa_asn1_meths[0],
78         &rsa_asn1_meths[1],
79 #endif
80 #ifndef OPENSSL_NO_DH
81         &dh_asn1_meth,
82 #endif
83 #ifndef OPENSSL_NO_DSA
84         &dsa_asn1_meths[0],
85         &dsa_asn1_meths[1],
86         &dsa_asn1_meths[2],
87         &dsa_asn1_meths[3],
88         &dsa_asn1_meths[4],
89 #endif
90 #ifndef OPENSSL_NO_EC
91         &eckey_asn1_meth,
92 #endif
93         &hmac_asn1_meth
94         };
95
96 typedef int sk_cmp_fn_type(const char * const *a, const char * const *b);
97 static STACK *app_methods = NULL;
98
99
100
101 #ifdef TEST
102 void main()
103         {
104         int i;
105         for (i = 0;
106                 i < sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
107                 i++)
108                 fprintf(stderr, "Number %d id=%d (%s)\n", i,
109                         standard_methods[i]->pkey_id,
110                         OBJ_nid2sn(standard_methods[i]->pkey_id));
111         }
112 #endif
113
114 static int ameth_cmp(const EVP_PKEY_ASN1_METHOD * const *a,
115                 const EVP_PKEY_ASN1_METHOD * const *b)
116         {
117         return ((*a)->pkey_id - (*b)->pkey_id);
118         }
119
120 int EVP_PKEY_asn1_get_count(void)
121         {
122         int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
123         if (app_methods)
124                 num += sk_num(app_methods);
125         return num;
126         }
127
128 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx)
129         {
130         int num = sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *);
131         if (idx < 0)
132                 return NULL; 
133         if (idx < num)
134                 return standard_methods[idx];
135         idx -= num;
136         return (const EVP_PKEY_ASN1_METHOD *)sk_value(app_methods, idx);
137         }
138
139 static const EVP_PKEY_ASN1_METHOD *pkey_asn1_find(int type)
140         {
141         EVP_PKEY_ASN1_METHOD tmp, *t = &tmp, **ret;
142         tmp.pkey_id = type;
143         if (app_methods)
144                 {
145                 int idx;
146                 idx = sk_find(app_methods, (char *)&tmp);
147                 if (idx >= 0)
148                         return (EVP_PKEY_ASN1_METHOD *)
149                                 sk_value(app_methods, idx);
150                 }
151         ret = (EVP_PKEY_ASN1_METHOD **) OBJ_bsearch((char *)&t,
152                         (char *)standard_methods,
153                         sizeof(standard_methods)/sizeof(EVP_PKEY_ASN1_METHOD *),
154                         sizeof(EVP_PKEY_ASN1_METHOD *),
155                         (int (*)(const void *, const void *))ameth_cmp);
156         if (!ret || !*ret)
157                 return NULL;
158         return *ret;
159         }
160
161 /* Find an implementation of an ASN1 algorithm. If 'pe' is not NULL
162  * also search through engines and set *pe to a functional reference
163  * to the engine implementing 'type' or NULL if no engine implements 
164  * it.
165  */
166
167 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find(ENGINE **pe, int type)
168         {
169         const EVP_PKEY_ASN1_METHOD *t;
170         ENGINE *e;
171
172         for (;;)
173                 {
174                 t = pkey_asn1_find(type);
175                 if (!t || !(t->pkey_flags & ASN1_PKEY_ALIAS))
176                         break;
177                 type = t->pkey_base_id;
178                 }
179         if (pe)
180                 {
181 #ifndef OPENSSL_NO_ENGINE
182                 /* type will contain the final unaliased type */
183                 e = ENGINE_get_pkey_asn1_meth_engine(type);
184                 if (e)
185                         {
186                         *pe = e;
187                         return ENGINE_get_pkey_asn1_meth(e, type);
188                         }
189 #endif
190                 *pe = NULL;
191                 }
192         return t;
193         }
194
195 const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_find_str(ENGINE **pe,
196                                         const char *str, int len)
197         {
198         int i;
199         const EVP_PKEY_ASN1_METHOD *ameth;
200         if (len == -1)
201                 len = strlen(str);
202         if (pe)
203                 {
204 #ifndef OPENSSL_NO_ENGINE
205                 ENGINE *e;
206                 for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
207                         {
208                         ameth = ENGINE_get_pkey_asn1_meth_str(e, str, len);
209                         if (ameth)
210                                 {
211                                 /* Convert structural into
212                                  * functional reference
213                                  */
214                                 if (!ENGINE_init(e))
215                                         ameth = NULL;
216                                 ENGINE_free(e);
217                                 *pe = e;
218                                 return ameth;
219                                 }
220                         }
221 #endif
222                 *pe = NULL;
223                 }
224         for (i = 0; i < EVP_PKEY_asn1_get_count(); i++)
225                 {
226                 ameth = EVP_PKEY_asn1_get0(i);
227                 if (ameth->pkey_flags & ASN1_PKEY_ALIAS)
228                         continue;
229                 if (((int)strlen(ameth->pem_str) == len) && 
230                         !strncasecmp(ameth->pem_str, str, len))
231                         return ameth;
232                 }
233         return NULL;
234         }
235
236 int EVP_PKEY_asn1_add0(const EVP_PKEY_ASN1_METHOD *ameth)
237         {
238         if (app_methods == NULL)
239                 {
240                 app_methods = sk_new((sk_cmp_fn_type *)ameth_cmp);
241                 if (!app_methods)
242                         return 0;
243                 }
244         if (!sk_push(app_methods, (char *)ameth))
245                 return 0;
246         sk_sort(app_methods);
247         return 1;
248         }
249
250 int EVP_PKEY_asn1_add_alias(int to, int from)
251         {
252         EVP_PKEY_ASN1_METHOD *ameth;
253         ameth = EVP_PKEY_asn1_new(from, ASN1_PKEY_ALIAS, NULL, NULL);
254         if (!ameth)
255                 return 0;
256         ameth->pkey_base_id = to;
257         return EVP_PKEY_asn1_add0(ameth);
258         }
259
260 int EVP_PKEY_asn1_get0_info(int *ppkey_id, int *ppkey_base_id, int *ppkey_flags,
261                                 const char **pinfo, const char **ppem_str,
262                                         const EVP_PKEY_ASN1_METHOD *ameth)
263         {
264         if (!ameth)
265                 return 0;
266         if (ppkey_id)
267                 *ppkey_id = ameth->pkey_id;
268         if (ppkey_base_id)
269                 *ppkey_base_id = ameth->pkey_base_id;
270         if (ppkey_flags)
271                 *ppkey_flags = ameth->pkey_flags;
272         if (pinfo)
273                 *pinfo = ameth->info;
274         if (ppem_str)
275                 *ppem_str = ameth->pem_str;
276         return 1;
277         }
278
279 const EVP_PKEY_ASN1_METHOD* EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
280         {
281         return pkey->ameth;
282         }
283
284 EVP_PKEY_ASN1_METHOD* EVP_PKEY_asn1_new(int id, int flags,
285                                         const char *pem_str, const char *info)
286         {
287         EVP_PKEY_ASN1_METHOD *ameth;
288         ameth = OPENSSL_malloc(sizeof(EVP_PKEY_ASN1_METHOD));
289         if (!ameth)
290                 return NULL;
291
292         ameth->pkey_id = id;
293         ameth->pkey_base_id = id;
294         ameth->pkey_flags = flags | ASN1_PKEY_DYNAMIC;
295
296         if (info)
297                 {
298                 ameth->info = BUF_strdup(info);
299                 if (!ameth->info)
300                         goto err;
301                 }
302
303         if (pem_str)
304                 {
305                 ameth->pem_str = BUF_strdup(pem_str);
306                 if (!ameth->pem_str)
307                         goto err;
308                 }
309
310         ameth->pub_decode = 0;
311         ameth->pub_encode = 0;
312         ameth->pub_cmp = 0;
313         ameth->pub_print = 0;
314
315         ameth->priv_decode = 0;
316         ameth->priv_encode = 0;
317         ameth->priv_print = 0;
318
319         ameth->old_priv_encode = 0;
320         ameth->old_priv_decode = 0;
321
322         ameth->pkey_size = 0;
323         ameth->pkey_bits = 0;
324
325         ameth->param_decode = 0;
326         ameth->param_encode = 0;
327         ameth->param_missing = 0;
328         ameth->param_copy = 0;
329         ameth->param_cmp = 0;
330         ameth->param_print = 0;
331
332         ameth->pkey_free = 0;
333         ameth->pkey_ctrl = 0;
334
335         return ameth;
336
337         err:
338
339         EVP_PKEY_asn1_free(ameth);
340         return NULL;
341
342         }
343
344 void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst, 
345                         const EVP_PKEY_ASN1_METHOD *src)
346         {
347
348         dst->pub_decode = src->pub_decode;
349         dst->pub_encode = src->pub_encode;
350         dst->pub_cmp = src->pub_cmp;
351         dst->pub_print = src->pub_print;
352
353         dst->priv_decode = src->priv_decode;
354         dst->priv_encode = src->priv_encode;
355         dst->priv_print = src->priv_print;
356
357         dst->old_priv_encode = src->old_priv_encode;
358         dst->old_priv_decode = src->old_priv_decode;
359
360         dst->pkey_size = src->pkey_size;
361         dst->pkey_bits = src->pkey_bits;
362
363         dst->param_decode = src->param_decode;
364         dst->param_encode = src->param_encode;
365         dst->param_missing = src->param_missing;
366         dst->param_copy = src->param_copy;
367         dst->param_cmp = src->param_cmp;
368         dst->param_print = src->param_print;
369
370         dst->pkey_free = src->pkey_free;
371         dst->pkey_ctrl = src->pkey_ctrl;
372
373         }
374
375 void EVP_PKEY_asn1_free(EVP_PKEY_ASN1_METHOD *ameth)
376         {
377         if (ameth && (ameth->pkey_flags & ASN1_PKEY_DYNAMIC))
378                 {
379                 if (ameth->pem_str)
380                         OPENSSL_free(ameth->pem_str);
381                 if (ameth->info)
382                         OPENSSL_free(ameth->info);
383                 OPENSSL_free(ameth);
384                 }
385         }
386
387 void EVP_PKEY_asn1_set_public(EVP_PKEY_ASN1_METHOD *ameth,
388                 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub),
389                 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk),
390                 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
391                 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
392                                                         ASN1_PCTX *pctx),
393                 int (*pkey_size)(const EVP_PKEY *pk),
394                 int (*pkey_bits)(const EVP_PKEY *pk))
395         {
396         ameth->pub_decode = pub_decode;
397         ameth->pub_encode = pub_encode;
398         ameth->pub_cmp = pub_cmp;
399         ameth->pub_print = pub_print;
400         ameth->pkey_size = pkey_size;
401         ameth->pkey_bits = pkey_bits;
402         }
403
404 void EVP_PKEY_asn1_set_private(EVP_PKEY_ASN1_METHOD *ameth,
405                 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf),
406                 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk),
407                 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
408                                                         ASN1_PCTX *pctx))
409         {
410         ameth->priv_decode = priv_decode;
411         ameth->priv_encode = priv_encode;
412         ameth->priv_print = priv_print;
413         }
414
415 void EVP_PKEY_asn1_set_param(EVP_PKEY_ASN1_METHOD *ameth,
416                 int (*param_decode)(EVP_PKEY *pkey,
417                                 const unsigned char **pder, int derlen),
418                 int (*param_encode)(const EVP_PKEY *pkey, unsigned char **pder),
419                 int (*param_missing)(const EVP_PKEY *pk),
420                 int (*param_copy)(EVP_PKEY *to, const EVP_PKEY *from),
421                 int (*param_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
422                 int (*param_print)(BIO *out, const EVP_PKEY *pkey, int indent,
423                                                         ASN1_PCTX *pctx))
424         {
425         ameth->param_decode = param_decode;
426         ameth->param_encode = param_encode;
427         ameth->param_missing = param_missing;
428         ameth->param_copy = param_copy;
429         ameth->param_cmp = param_cmp;
430         ameth->param_print = param_print;
431         }
432
433 void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth,
434                 void (*pkey_free)(EVP_PKEY *pkey))
435         {
436         ameth->pkey_free = pkey_free;
437         }
438
439 void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
440                 int (*pkey_ctrl)(EVP_PKEY *pkey, int op,
441                                                         long arg1, void *arg2))
442         {
443         ameth->pkey_ctrl = pkey_ctrl;
444         }