b9079b58d1de076ef2c6691d3f4ecfa43d2bbe0a
[openssl.git] / crypto / x509 / x_pubkey.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/asn1t.h>
61 #include <openssl/x509.h>
62 #include "internal/asn1_int.h"
63 #include "internal/evp_int.h"
64 #include "internal/x509_int.h"
65 #include <openssl/rsa.h>
66 #include <openssl/dsa.h>
67
68 struct X509_pubkey_st {
69     X509_ALGOR *algor;
70     ASN1_BIT_STRING *public_key;
71     EVP_PKEY *pkey;
72 };
73
74 /* Minor tweak to operation: free up EVP_PKEY */
75 static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
76                      void *exarg)
77 {
78     if (operation == ASN1_OP_FREE_POST) {
79         X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
80         EVP_PKEY_free(pubkey->pkey);
81     } else if (operation == ASN1_OP_D2I_POST) {
82         /* Attempt to decode public key and cache in pubkey structure. */
83         X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
84         EVP_PKEY_free(pubkey->pkey);
85         /*
86          * Remove any errors from the queue: subsequent decode attempts will
87          * return an appropriate error.
88          */
89         ERR_set_mark();
90         pubkey->pkey = X509_PUBKEY_get0(pubkey);
91         ERR_pop_to_mark();
92     }
93     return 1;
94 }
95
96 ASN1_SEQUENCE_cb(X509_PUBKEY, pubkey_cb) = {
97         ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
98         ASN1_SIMPLE(X509_PUBKEY, public_key, ASN1_BIT_STRING)
99 } ASN1_SEQUENCE_END_cb(X509_PUBKEY, X509_PUBKEY)
100
101 IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY)
102
103 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
104 {
105     X509_PUBKEY *pk = NULL;
106
107     if (x == NULL)
108         return (0);
109
110     if ((pk = X509_PUBKEY_new()) == NULL)
111         goto error;
112
113     if (pkey->ameth) {
114         if (pkey->ameth->pub_encode) {
115             if (!pkey->ameth->pub_encode(pk, pkey)) {
116                 X509err(X509_F_X509_PUBKEY_SET,
117                         X509_R_PUBLIC_KEY_ENCODE_ERROR);
118                 goto error;
119             }
120         } else {
121             X509err(X509_F_X509_PUBKEY_SET, X509_R_METHOD_NOT_SUPPORTED);
122             goto error;
123         }
124     } else {
125         X509err(X509_F_X509_PUBKEY_SET, X509_R_UNSUPPORTED_ALGORITHM);
126         goto error;
127     }
128
129     X509_PUBKEY_free(*x);
130     *x = pk;
131     return 1;
132
133  error:
134     X509_PUBKEY_free(pk);
135     return 0;
136 }
137
138 EVP_PKEY *X509_PUBKEY_get0(X509_PUBKEY *key)
139 {
140     EVP_PKEY *ret = NULL;
141
142     if (key == NULL)
143         goto error;
144
145     if (key->pkey != NULL)
146         return key->pkey;
147
148     if (key->public_key == NULL)
149         goto error;
150
151     if ((ret = EVP_PKEY_new()) == NULL) {
152         X509err(X509_F_X509_PUBKEY_GET0, ERR_R_MALLOC_FAILURE);
153         goto error;
154     }
155
156     if (!EVP_PKEY_set_type(ret, OBJ_obj2nid(key->algor->algorithm))) {
157         X509err(X509_F_X509_PUBKEY_GET0, X509_R_UNSUPPORTED_ALGORITHM);
158         goto error;
159     }
160
161     if (ret->ameth->pub_decode) {
162         if (!ret->ameth->pub_decode(ret, key)) {
163             X509err(X509_F_X509_PUBKEY_GET0, X509_R_PUBLIC_KEY_DECODE_ERROR);
164             goto error;
165         }
166     } else {
167         X509err(X509_F_X509_PUBKEY_GET0, X509_R_METHOD_NOT_SUPPORTED);
168         goto error;
169     }
170
171     return ret;
172
173  error:
174     EVP_PKEY_free(ret);
175     return (NULL);
176 }
177
178 EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
179 {
180     EVP_PKEY *ret = X509_PUBKEY_get0(key);
181     if (ret != NULL)
182         EVP_PKEY_up_ref(ret);
183     return ret;
184 }
185
186 /*
187  * Now two pseudo ASN1 routines that take an EVP_PKEY structure and encode or
188  * decode as X509_PUBKEY
189  */
190
191 EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length)
192 {
193     X509_PUBKEY *xpk;
194     EVP_PKEY *pktmp;
195     const unsigned char *q;
196     q = *pp;
197     xpk = d2i_X509_PUBKEY(NULL, &q, length);
198     if (!xpk)
199         return NULL;
200     pktmp = X509_PUBKEY_get(xpk);
201     X509_PUBKEY_free(xpk);
202     if (!pktmp)
203         return NULL;
204     *pp = q;
205     if (a) {
206         EVP_PKEY_free(*a);
207         *a = pktmp;
208     }
209     return pktmp;
210 }
211
212 int i2d_PUBKEY(EVP_PKEY *a, unsigned char **pp)
213 {
214     X509_PUBKEY *xpk = NULL;
215     int ret;
216     if (!a)
217         return 0;
218     if (!X509_PUBKEY_set(&xpk, a))
219         return 0;
220     ret = i2d_X509_PUBKEY(xpk, pp);
221     X509_PUBKEY_free(xpk);
222     return ret;
223 }
224
225 /*
226  * The following are equivalents but which return RSA and DSA keys
227  */
228 #ifndef OPENSSL_NO_RSA
229 RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length)
230 {
231     EVP_PKEY *pkey;
232     RSA *key;
233     const unsigned char *q;
234     q = *pp;
235     pkey = d2i_PUBKEY(NULL, &q, length);
236     if (!pkey)
237         return NULL;
238     key = EVP_PKEY_get1_RSA(pkey);
239     EVP_PKEY_free(pkey);
240     if (!key)
241         return NULL;
242     *pp = q;
243     if (a) {
244         RSA_free(*a);
245         *a = key;
246     }
247     return key;
248 }
249
250 int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp)
251 {
252     EVP_PKEY *pktmp;
253     int ret;
254     if (!a)
255         return 0;
256     pktmp = EVP_PKEY_new();
257     if (pktmp == NULL) {
258         ASN1err(ASN1_F_I2D_RSA_PUBKEY, ERR_R_MALLOC_FAILURE);
259         return 0;
260     }
261     EVP_PKEY_set1_RSA(pktmp, a);
262     ret = i2d_PUBKEY(pktmp, pp);
263     EVP_PKEY_free(pktmp);
264     return ret;
265 }
266 #endif
267
268 #ifndef OPENSSL_NO_DSA
269 DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length)
270 {
271     EVP_PKEY *pkey;
272     DSA *key;
273     const unsigned char *q;
274     q = *pp;
275     pkey = d2i_PUBKEY(NULL, &q, length);
276     if (!pkey)
277         return NULL;
278     key = EVP_PKEY_get1_DSA(pkey);
279     EVP_PKEY_free(pkey);
280     if (!key)
281         return NULL;
282     *pp = q;
283     if (a) {
284         DSA_free(*a);
285         *a = key;
286     }
287     return key;
288 }
289
290 int i2d_DSA_PUBKEY(DSA *a, unsigned char **pp)
291 {
292     EVP_PKEY *pktmp;
293     int ret;
294     if (!a)
295         return 0;
296     pktmp = EVP_PKEY_new();
297     if (pktmp == NULL) {
298         ASN1err(ASN1_F_I2D_DSA_PUBKEY, ERR_R_MALLOC_FAILURE);
299         return 0;
300     }
301     EVP_PKEY_set1_DSA(pktmp, a);
302     ret = i2d_PUBKEY(pktmp, pp);
303     EVP_PKEY_free(pktmp);
304     return ret;
305 }
306 #endif
307
308 #ifndef OPENSSL_NO_EC
309 EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length)
310 {
311     EVP_PKEY *pkey;
312     EC_KEY *key;
313     const unsigned char *q;
314     q = *pp;
315     pkey = d2i_PUBKEY(NULL, &q, length);
316     if (!pkey)
317         return (NULL);
318     key = EVP_PKEY_get1_EC_KEY(pkey);
319     EVP_PKEY_free(pkey);
320     if (!key)
321         return (NULL);
322     *pp = q;
323     if (a) {
324         EC_KEY_free(*a);
325         *a = key;
326     }
327     return (key);
328 }
329
330 int i2d_EC_PUBKEY(EC_KEY *a, unsigned char **pp)
331 {
332     EVP_PKEY *pktmp;
333     int ret;
334     if (!a)
335         return (0);
336     if ((pktmp = EVP_PKEY_new()) == NULL) {
337         ASN1err(ASN1_F_I2D_EC_PUBKEY, ERR_R_MALLOC_FAILURE);
338         return (0);
339     }
340     EVP_PKEY_set1_EC_KEY(pktmp, a);
341     ret = i2d_PUBKEY(pktmp, pp);
342     EVP_PKEY_free(pktmp);
343     return (ret);
344 }
345 #endif
346
347 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
348                            int ptype, void *pval,
349                            unsigned char *penc, int penclen)
350 {
351     if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
352         return 0;
353     if (penc) {
354         OPENSSL_free(pub->public_key->data);
355         pub->public_key->data = penc;
356         pub->public_key->length = penclen;
357         /* Set number of unused bits to zero */
358         pub->public_key->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
359         pub->public_key->flags |= ASN1_STRING_FLAG_BITS_LEFT;
360     }
361     return 1;
362 }
363
364 int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
365                            const unsigned char **pk, int *ppklen,
366                            X509_ALGOR **pa, X509_PUBKEY *pub)
367 {
368     if (ppkalg)
369         *ppkalg = pub->algor->algorithm;
370     if (pk) {
371         *pk = pub->public_key->data;
372         *ppklen = pub->public_key->length;
373     }
374     if (pa)
375         *pa = pub->algor;
376     return 1;
377 }
378
379 ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x)
380 {
381     if (x == NULL)
382         return NULL;
383     return x->cert_info.key->public_key;
384 }