Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

369 wiersze
10 KiB

  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. #include <openssl/x509.h>
  57. #include <limits.h>
  58. #include <openssl/asn1.h>
  59. #include <openssl/asn1t.h>
  60. #include <openssl/bytestring.h>
  61. #include <openssl/err.h>
  62. #include <openssl/evp.h>
  63. #include <openssl/mem.h>
  64. #include <openssl/obj.h>
  65. #include <openssl/thread.h>
  66. #include "../internal.h"
  67. /* Minor tweak to operation: free up EVP_PKEY */
  68. static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
  69. void *exarg)
  70. {
  71. if (operation == ASN1_OP_FREE_POST) {
  72. X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
  73. EVP_PKEY_free(pubkey->pkey);
  74. }
  75. return 1;
  76. }
  77. ASN1_SEQUENCE_cb(X509_PUBKEY, pubkey_cb) = {
  78. ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
  79. ASN1_SIMPLE(X509_PUBKEY, public_key, ASN1_BIT_STRING)
  80. } ASN1_SEQUENCE_END_cb(X509_PUBKEY, X509_PUBKEY)
  81. IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY)
  82. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
  83. {
  84. X509_PUBKEY *pk = NULL;
  85. uint8_t *spki = NULL;
  86. size_t spki_len;
  87. if (x == NULL)
  88. return (0);
  89. CBB cbb;
  90. if (!CBB_init(&cbb, 0) ||
  91. !EVP_marshal_public_key(&cbb, pkey) ||
  92. !CBB_finish(&cbb, &spki, &spki_len) ||
  93. spki_len > LONG_MAX) {
  94. CBB_cleanup(&cbb);
  95. OPENSSL_PUT_ERROR(X509, X509_R_PUBLIC_KEY_ENCODE_ERROR);
  96. goto error;
  97. }
  98. const uint8_t *p = spki;
  99. pk = d2i_X509_PUBKEY(NULL, &p, (long)spki_len);
  100. if (pk == NULL || p != spki + spki_len) {
  101. OPENSSL_PUT_ERROR(X509, X509_R_PUBLIC_KEY_DECODE_ERROR);
  102. goto error;
  103. }
  104. OPENSSL_free(spki);
  105. X509_PUBKEY_free(*x);
  106. *x = pk;
  107. return 1;
  108. error:
  109. X509_PUBKEY_free(pk);
  110. OPENSSL_free(spki);
  111. return 0;
  112. }
  113. /* g_pubkey_lock is used to protect the initialisation of the |pkey| member of
  114. * |X509_PUBKEY| objects. Really |X509_PUBKEY| should have a |CRYPTO_once_t|
  115. * inside it for this, but |CRYPTO_once_t| is private and |X509_PUBKEY| is
  116. * not. */
  117. static struct CRYPTO_STATIC_MUTEX g_pubkey_lock = CRYPTO_STATIC_MUTEX_INIT;
  118. EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
  119. {
  120. EVP_PKEY *ret = NULL;
  121. uint8_t *spki = NULL;
  122. if (key == NULL)
  123. goto error;
  124. CRYPTO_STATIC_MUTEX_lock_read(&g_pubkey_lock);
  125. if (key->pkey != NULL) {
  126. CRYPTO_STATIC_MUTEX_unlock_read(&g_pubkey_lock);
  127. EVP_PKEY_up_ref(key->pkey);
  128. return key->pkey;
  129. }
  130. CRYPTO_STATIC_MUTEX_unlock_read(&g_pubkey_lock);
  131. /* Re-encode the |X509_PUBKEY| to DER and parse it. */
  132. int spki_len = i2d_X509_PUBKEY(key, &spki);
  133. if (spki_len < 0) {
  134. goto error;
  135. }
  136. CBS cbs;
  137. CBS_init(&cbs, spki, (size_t)spki_len);
  138. ret = EVP_parse_public_key(&cbs);
  139. if (ret == NULL || CBS_len(&cbs) != 0) {
  140. OPENSSL_PUT_ERROR(X509, X509_R_PUBLIC_KEY_DECODE_ERROR);
  141. goto error;
  142. }
  143. /* Check to see if another thread set key->pkey first */
  144. CRYPTO_STATIC_MUTEX_lock_write(&g_pubkey_lock);
  145. if (key->pkey) {
  146. CRYPTO_STATIC_MUTEX_unlock_write(&g_pubkey_lock);
  147. EVP_PKEY_free(ret);
  148. ret = key->pkey;
  149. } else {
  150. key->pkey = ret;
  151. CRYPTO_STATIC_MUTEX_unlock_write(&g_pubkey_lock);
  152. }
  153. OPENSSL_free(spki);
  154. EVP_PKEY_up_ref(ret);
  155. return ret;
  156. error:
  157. OPENSSL_free(spki);
  158. EVP_PKEY_free(ret);
  159. return NULL;
  160. }
  161. /*
  162. * Now two pseudo ASN1 routines that take an EVP_PKEY structure and encode or
  163. * decode as X509_PUBKEY
  164. */
  165. EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp, long length)
  166. {
  167. X509_PUBKEY *xpk;
  168. EVP_PKEY *pktmp;
  169. xpk = d2i_X509_PUBKEY(NULL, pp, length);
  170. if (!xpk)
  171. return NULL;
  172. pktmp = X509_PUBKEY_get(xpk);
  173. X509_PUBKEY_free(xpk);
  174. if (!pktmp)
  175. return NULL;
  176. if (a) {
  177. EVP_PKEY_free(*a);
  178. *a = pktmp;
  179. }
  180. return pktmp;
  181. }
  182. int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp)
  183. {
  184. X509_PUBKEY *xpk = NULL;
  185. int ret;
  186. if (!a)
  187. return 0;
  188. if (!X509_PUBKEY_set(&xpk, (EVP_PKEY *)a))
  189. return 0;
  190. ret = i2d_X509_PUBKEY(xpk, pp);
  191. X509_PUBKEY_free(xpk);
  192. return ret;
  193. }
  194. /*
  195. * The following are equivalents but which return RSA and DSA keys
  196. */
  197. RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp, long length)
  198. {
  199. EVP_PKEY *pkey;
  200. RSA *key;
  201. const unsigned char *q;
  202. q = *pp;
  203. pkey = d2i_PUBKEY(NULL, &q, length);
  204. if (!pkey)
  205. return NULL;
  206. key = EVP_PKEY_get1_RSA(pkey);
  207. EVP_PKEY_free(pkey);
  208. if (!key)
  209. return NULL;
  210. *pp = q;
  211. if (a) {
  212. RSA_free(*a);
  213. *a = key;
  214. }
  215. return key;
  216. }
  217. int i2d_RSA_PUBKEY(const RSA *a, unsigned char **pp)
  218. {
  219. EVP_PKEY *pktmp;
  220. int ret;
  221. if (!a)
  222. return 0;
  223. pktmp = EVP_PKEY_new();
  224. if (!pktmp) {
  225. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  226. return 0;
  227. }
  228. EVP_PKEY_set1_RSA(pktmp, (RSA *)a);
  229. ret = i2d_PUBKEY(pktmp, pp);
  230. EVP_PKEY_free(pktmp);
  231. return ret;
  232. }
  233. #ifndef OPENSSL_NO_DSA
  234. DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp, long length)
  235. {
  236. EVP_PKEY *pkey;
  237. DSA *key;
  238. const unsigned char *q;
  239. q = *pp;
  240. pkey = d2i_PUBKEY(NULL, &q, length);
  241. if (!pkey)
  242. return NULL;
  243. key = EVP_PKEY_get1_DSA(pkey);
  244. EVP_PKEY_free(pkey);
  245. if (!key)
  246. return NULL;
  247. *pp = q;
  248. if (a) {
  249. DSA_free(*a);
  250. *a = key;
  251. }
  252. return key;
  253. }
  254. int i2d_DSA_PUBKEY(const DSA *a, unsigned char **pp)
  255. {
  256. EVP_PKEY *pktmp;
  257. int ret;
  258. if (!a)
  259. return 0;
  260. pktmp = EVP_PKEY_new();
  261. if (!pktmp) {
  262. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  263. return 0;
  264. }
  265. EVP_PKEY_set1_DSA(pktmp, (DSA *)a);
  266. ret = i2d_PUBKEY(pktmp, pp);
  267. EVP_PKEY_free(pktmp);
  268. return ret;
  269. }
  270. #endif
  271. EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length)
  272. {
  273. EVP_PKEY *pkey;
  274. EC_KEY *key;
  275. const unsigned char *q;
  276. q = *pp;
  277. pkey = d2i_PUBKEY(NULL, &q, length);
  278. if (!pkey)
  279. return (NULL);
  280. key = EVP_PKEY_get1_EC_KEY(pkey);
  281. EVP_PKEY_free(pkey);
  282. if (!key)
  283. return (NULL);
  284. *pp = q;
  285. if (a) {
  286. EC_KEY_free(*a);
  287. *a = key;
  288. }
  289. return (key);
  290. }
  291. int i2d_EC_PUBKEY(const EC_KEY *a, unsigned char **pp)
  292. {
  293. EVP_PKEY *pktmp;
  294. int ret;
  295. if (!a)
  296. return (0);
  297. if ((pktmp = EVP_PKEY_new()) == NULL) {
  298. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  299. return (0);
  300. }
  301. EVP_PKEY_set1_EC_KEY(pktmp, (EC_KEY *)a);
  302. ret = i2d_PUBKEY(pktmp, pp);
  303. EVP_PKEY_free(pktmp);
  304. return (ret);
  305. }
  306. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj,
  307. int ptype, void *pval,
  308. unsigned char *penc, int penclen)
  309. {
  310. if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
  311. return 0;
  312. if (penc) {
  313. if (pub->public_key->data)
  314. OPENSSL_free(pub->public_key->data);
  315. pub->public_key->data = penc;
  316. pub->public_key->length = penclen;
  317. /* Set number of unused bits to zero */
  318. pub->public_key->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
  319. pub->public_key->flags |= ASN1_STRING_FLAG_BITS_LEFT;
  320. }
  321. return 1;
  322. }
  323. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  324. const unsigned char **pk, int *ppklen,
  325. X509_ALGOR **pa, X509_PUBKEY *pub)
  326. {
  327. if (ppkalg)
  328. *ppkalg = pub->algor->algorithm;
  329. if (pk) {
  330. *pk = pub->public_key->data;
  331. *ppklen = pub->public_key->length;
  332. }
  333. if (pa)
  334. *pa = pub->algor;
  335. return 1;
  336. }