You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

254 lines
7.3 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/dh.h>
  57. #include <string.h>
  58. #include <openssl/bn.h>
  59. #include <openssl/buf.h>
  60. #include <openssl/err.h>
  61. #include <openssl/ex_data.h>
  62. #include <openssl/mem.h>
  63. #include <openssl/thread.h>
  64. #include "internal.h"
  65. #include "../internal.h"
  66. extern const DH_METHOD DH_default_method;
  67. static CRYPTO_EX_DATA_CLASS g_ex_data_class = CRYPTO_EX_DATA_CLASS_INIT;
  68. DH *DH_new(void) { return DH_new_method(NULL); }
  69. DH *DH_new_method(const ENGINE *engine) {
  70. DH *dh = (DH *)OPENSSL_malloc(sizeof(DH));
  71. if (dh == NULL) {
  72. OPENSSL_PUT_ERROR(DH, DH_new_method, ERR_R_MALLOC_FAILURE);
  73. return NULL;
  74. }
  75. memset(dh, 0, sizeof(DH));
  76. if (engine) {
  77. dh->meth = ENGINE_get_DH_method(engine);
  78. }
  79. if (dh->meth == NULL) {
  80. dh->meth = (DH_METHOD*) &DH_default_method;
  81. }
  82. METHOD_ref(dh->meth);
  83. CRYPTO_MUTEX_init(&dh->method_mont_p_lock);
  84. dh->references = 1;
  85. if (!CRYPTO_new_ex_data(&g_ex_data_class, dh, &dh->ex_data)) {
  86. OPENSSL_free(dh);
  87. return NULL;
  88. }
  89. if (dh->meth->init && !dh->meth->init(dh)) {
  90. CRYPTO_free_ex_data(&g_ex_data_class, dh, &dh->ex_data);
  91. METHOD_unref(dh->meth);
  92. OPENSSL_free(dh);
  93. return NULL;
  94. }
  95. return dh;
  96. }
  97. void DH_free(DH *dh) {
  98. if (dh == NULL) {
  99. return;
  100. }
  101. if (CRYPTO_add(&dh->references, -1, CRYPTO_LOCK_DH) > 0) {
  102. return;
  103. }
  104. if (dh->meth->finish) {
  105. dh->meth->finish(dh);
  106. }
  107. METHOD_unref(dh->meth);
  108. CRYPTO_free_ex_data(&g_ex_data_class, dh, &dh->ex_data);
  109. if (dh->method_mont_p) BN_MONT_CTX_free(dh->method_mont_p);
  110. if (dh->p != NULL) BN_clear_free(dh->p);
  111. if (dh->g != NULL) BN_clear_free(dh->g);
  112. if (dh->q != NULL) BN_clear_free(dh->q);
  113. if (dh->j != NULL) BN_clear_free(dh->j);
  114. if (dh->seed) OPENSSL_free(dh->seed);
  115. if (dh->counter != NULL) BN_clear_free(dh->counter);
  116. if (dh->pub_key != NULL) BN_clear_free(dh->pub_key);
  117. if (dh->priv_key != NULL) BN_clear_free(dh->priv_key);
  118. CRYPTO_MUTEX_cleanup(&dh->method_mont_p_lock);
  119. OPENSSL_free(dh);
  120. }
  121. int DH_generate_parameters_ex(DH *dh, int prime_bits, int generator, BN_GENCB *cb) {
  122. if (dh->meth->generate_parameters) {
  123. return dh->meth->generate_parameters(dh, prime_bits, generator, cb);
  124. }
  125. return DH_default_method.generate_parameters(dh, prime_bits, generator, cb);
  126. }
  127. int DH_generate_key(DH *dh) {
  128. if (dh->meth->generate_key) {
  129. return dh->meth->generate_key(dh);
  130. }
  131. return DH_default_method.generate_key(dh);
  132. }
  133. int DH_compute_key(unsigned char *out, const BIGNUM *peers_key, DH *dh) {
  134. if (dh->meth->compute_key) {
  135. return dh->meth->compute_key(dh, out, peers_key);
  136. }
  137. return DH_default_method.compute_key(dh, out, peers_key);
  138. }
  139. int DH_size(const DH *dh) { return BN_num_bytes(dh->p); }
  140. int DH_up_ref(DH *r) {
  141. CRYPTO_add(&r->references, 1, CRYPTO_LOCK_DH);
  142. return 1;
  143. }
  144. static int int_dh_bn_cpy(BIGNUM **dst, const BIGNUM *src) {
  145. BIGNUM *a = NULL;
  146. if (src) {
  147. a = BN_dup(src);
  148. if (!a) {
  149. return 0;
  150. }
  151. }
  152. if (*dst) {
  153. BN_free(*dst);
  154. }
  155. *dst = a;
  156. return 1;
  157. }
  158. static int int_dh_param_copy(DH *to, const DH *from, int is_x942) {
  159. if (is_x942 == -1) {
  160. is_x942 = !!from->q;
  161. }
  162. if (!int_dh_bn_cpy(&to->p, from->p) ||
  163. !int_dh_bn_cpy(&to->g, from->g)) {
  164. return 0;
  165. }
  166. if (!is_x942) {
  167. return 1;
  168. }
  169. if (!int_dh_bn_cpy(&to->q, from->q) ||
  170. !int_dh_bn_cpy(&to->j, from->j)) {
  171. return 0;
  172. }
  173. if (to->seed) {
  174. OPENSSL_free(to->seed);
  175. to->seed = NULL;
  176. to->seedlen = 0;
  177. }
  178. if (from->seed) {
  179. to->seed = BUF_memdup(from->seed, from->seedlen);
  180. if (!to->seed) {
  181. return 0;
  182. }
  183. to->seedlen = from->seedlen;
  184. }
  185. return 1;
  186. }
  187. DH *DHparams_dup(const DH *dh) {
  188. DH *ret = DH_new();
  189. if (!ret) {
  190. return NULL;
  191. }
  192. if (!int_dh_param_copy(ret, dh, -1)) {
  193. DH_free(ret);
  194. return NULL;
  195. }
  196. return ret;
  197. }
  198. int DH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  199. CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) {
  200. int index;
  201. if (!CRYPTO_get_ex_new_index(&g_ex_data_class, &index, argl, argp, new_func,
  202. dup_func, free_func)) {
  203. return -1;
  204. }
  205. return index;
  206. }
  207. int DH_set_ex_data(DH *d, int idx, void *arg) {
  208. return (CRYPTO_set_ex_data(&d->ex_data, idx, arg));
  209. }
  210. void *DH_get_ex_data(DH *d, int idx) {
  211. return (CRYPTO_get_ex_data(&d->ex_data, idx));
  212. }