25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

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