2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
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
11 #include "internal/cryptlib.h"
12 #include <openssl/asn1t.h>
13 #include <openssl/x509.h>
14 #include "internal/asn1_int.h"
15 #include "internal/evp_int.h"
16 #include "internal/x509_int.h"
17 #include <openssl/rsa.h>
18 #include <openssl/dsa.h>
20 struct X509_pubkey_st
{
22 ASN1_BIT_STRING
*public_key
;
26 static int x509_pubkey_decode(EVP_PKEY
**pk
, X509_PUBKEY
*key
);
28 /* Minor tweak to operation: free up EVP_PKEY */
29 static int pubkey_cb(int operation
, ASN1_VALUE
**pval
, const ASN1_ITEM
*it
,
32 if (operation
== ASN1_OP_FREE_POST
) {
33 X509_PUBKEY
*pubkey
= (X509_PUBKEY
*)*pval
;
34 EVP_PKEY_free(pubkey
->pkey
);
35 } else if (operation
== ASN1_OP_D2I_POST
) {
36 /* Attempt to decode public key and cache in pubkey structure. */
37 X509_PUBKEY
*pubkey
= (X509_PUBKEY
*)*pval
;
38 EVP_PKEY_free(pubkey
->pkey
);
40 * Opportunistically decode the key but remove any non fatal errors
41 * from the queue. Subsequent explicit attempts to decode/use the key
42 * will return an appropriate error.
45 if (x509_pubkey_decode(&pubkey
->pkey
, pubkey
) == -1)
52 ASN1_SEQUENCE_cb(X509_PUBKEY
, pubkey_cb
) = {
53 ASN1_SIMPLE(X509_PUBKEY
, algor
, X509_ALGOR
),
54 ASN1_SIMPLE(X509_PUBKEY
, public_key
, ASN1_BIT_STRING
)
55 } ASN1_SEQUENCE_END_cb(X509_PUBKEY
, X509_PUBKEY
)
57 IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY
)
59 int X509_PUBKEY_set(X509_PUBKEY
**x
, EVP_PKEY
*pkey
)
61 X509_PUBKEY
*pk
= NULL
;
66 if ((pk
= X509_PUBKEY_new()) == NULL
)
70 if (pkey
->ameth
->pub_encode
) {
71 if (!pkey
->ameth
->pub_encode(pk
, pkey
)) {
72 X509err(X509_F_X509_PUBKEY_SET
,
73 X509_R_PUBLIC_KEY_ENCODE_ERROR
);
77 X509err(X509_F_X509_PUBKEY_SET
, X509_R_METHOD_NOT_SUPPORTED
);
81 X509err(X509_F_X509_PUBKEY_SET
, X509_R_UNSUPPORTED_ALGORITHM
);
88 EVP_PKEY_up_ref(pkey
);
97 * Attempt to decode a public key.
98 * Returns 1 on success, 0 for a decode failure and -1 for a fatal
99 * error e.g. malloc failure.
103 static int x509_pubkey_decode(EVP_PKEY
**ppkey
, X509_PUBKEY
*key
)
105 EVP_PKEY
*pkey
= EVP_PKEY_new();
108 X509err(X509_F_X509_PUBKEY_DECODE
, ERR_R_MALLOC_FAILURE
);
112 if (!EVP_PKEY_set_type(pkey
, OBJ_obj2nid(key
->algor
->algorithm
))) {
113 X509err(X509_F_X509_PUBKEY_DECODE
, X509_R_UNSUPPORTED_ALGORITHM
);
117 if (pkey
->ameth
->pub_decode
) {
119 * Treat any failure of pub_decode as a decode error. In
120 * future we could have different return codes for decode
121 * errors and fatal errors such as malloc failure.
123 if (!pkey
->ameth
->pub_decode(pkey
, key
)) {
124 X509err(X509_F_X509_PUBKEY_DECODE
, X509_R_PUBLIC_KEY_DECODE_ERROR
);
128 X509err(X509_F_X509_PUBKEY_DECODE
, X509_R_METHOD_NOT_SUPPORTED
);
140 EVP_PKEY
*X509_PUBKEY_get0(X509_PUBKEY
*key
)
142 EVP_PKEY
*ret
= NULL
;
144 if (key
== NULL
|| key
->public_key
== NULL
)
147 if (key
->pkey
!= NULL
)
151 * When the key ASN.1 is initially parsed an attempt is made to
152 * decode the public key and cache the EVP_PKEY structure. If this
153 * operation fails the cached value will be NULL. Parsing continues
154 * to allow parsing of unknown key types or unsupported forms.
155 * We repeat the decode operation so the appropriate errors are left
158 x509_pubkey_decode(&ret
, key
);
159 /* If decode doesn't fail something bad happened */
161 X509err(X509_F_X509_PUBKEY_GET0
, ERR_R_INTERNAL_ERROR
);
168 EVP_PKEY
*X509_PUBKEY_get(X509_PUBKEY
*key
)
170 EVP_PKEY
*ret
= X509_PUBKEY_get0(key
);
172 EVP_PKEY_up_ref(ret
);
177 * Now two pseudo ASN1 routines that take an EVP_PKEY structure and encode or
178 * decode as X509_PUBKEY
181 EVP_PKEY
*d2i_PUBKEY(EVP_PKEY
**a
, const unsigned char **pp
, long length
)
185 const unsigned char *q
;
187 xpk
= d2i_X509_PUBKEY(NULL
, &q
, length
);
190 pktmp
= X509_PUBKEY_get(xpk
);
191 X509_PUBKEY_free(xpk
);
202 int i2d_PUBKEY(EVP_PKEY
*a
, unsigned char **pp
)
204 X509_PUBKEY
*xpk
= NULL
;
208 if (!X509_PUBKEY_set(&xpk
, a
))
210 ret
= i2d_X509_PUBKEY(xpk
, pp
);
211 X509_PUBKEY_free(xpk
);
216 * The following are equivalents but which return RSA and DSA keys
218 #ifndef OPENSSL_NO_RSA
219 RSA
*d2i_RSA_PUBKEY(RSA
**a
, const unsigned char **pp
, long length
)
223 const unsigned char *q
;
225 pkey
= d2i_PUBKEY(NULL
, &q
, length
);
228 key
= EVP_PKEY_get1_RSA(pkey
);
240 int i2d_RSA_PUBKEY(RSA
*a
, unsigned char **pp
)
246 pktmp
= EVP_PKEY_new();
248 ASN1err(ASN1_F_I2D_RSA_PUBKEY
, ERR_R_MALLOC_FAILURE
);
251 EVP_PKEY_set1_RSA(pktmp
, a
);
252 ret
= i2d_PUBKEY(pktmp
, pp
);
253 EVP_PKEY_free(pktmp
);
258 #ifndef OPENSSL_NO_DSA
259 DSA
*d2i_DSA_PUBKEY(DSA
**a
, const unsigned char **pp
, long length
)
263 const unsigned char *q
;
265 pkey
= d2i_PUBKEY(NULL
, &q
, length
);
268 key
= EVP_PKEY_get1_DSA(pkey
);
280 int i2d_DSA_PUBKEY(DSA
*a
, unsigned char **pp
)
286 pktmp
= EVP_PKEY_new();
288 ASN1err(ASN1_F_I2D_DSA_PUBKEY
, ERR_R_MALLOC_FAILURE
);
291 EVP_PKEY_set1_DSA(pktmp
, a
);
292 ret
= i2d_PUBKEY(pktmp
, pp
);
293 EVP_PKEY_free(pktmp
);
298 #ifndef OPENSSL_NO_EC
299 EC_KEY
*d2i_EC_PUBKEY(EC_KEY
**a
, const unsigned char **pp
, long length
)
303 const unsigned char *q
;
305 pkey
= d2i_PUBKEY(NULL
, &q
, length
);
308 key
= EVP_PKEY_get1_EC_KEY(pkey
);
320 int i2d_EC_PUBKEY(EC_KEY
*a
, unsigned char **pp
)
326 if ((pktmp
= EVP_PKEY_new()) == NULL
) {
327 ASN1err(ASN1_F_I2D_EC_PUBKEY
, ERR_R_MALLOC_FAILURE
);
330 EVP_PKEY_set1_EC_KEY(pktmp
, a
);
331 ret
= i2d_PUBKEY(pktmp
, pp
);
332 EVP_PKEY_free(pktmp
);
337 int X509_PUBKEY_set0_param(X509_PUBKEY
*pub
, ASN1_OBJECT
*aobj
,
338 int ptype
, void *pval
,
339 unsigned char *penc
, int penclen
)
341 if (!X509_ALGOR_set0(pub
->algor
, aobj
, ptype
, pval
))
344 OPENSSL_free(pub
->public_key
->data
);
345 pub
->public_key
->data
= penc
;
346 pub
->public_key
->length
= penclen
;
347 /* Set number of unused bits to zero */
348 pub
->public_key
->flags
&= ~(ASN1_STRING_FLAG_BITS_LEFT
| 0x07);
349 pub
->public_key
->flags
|= ASN1_STRING_FLAG_BITS_LEFT
;
354 int X509_PUBKEY_get0_param(ASN1_OBJECT
**ppkalg
,
355 const unsigned char **pk
, int *ppklen
,
356 X509_ALGOR
**pa
, X509_PUBKEY
*pub
)
359 *ppkalg
= pub
->algor
->algorithm
;
361 *pk
= pub
->public_key
->data
;
362 *ppklen
= pub
->public_key
->length
;
369 ASN1_BIT_STRING
*X509_get0_pubkey_bitstr(const X509
*x
)
373 return x
->cert_info
.key
->public_key
;