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.
 
 
 
 
 
 

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