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.

dh.c 7.1 KiB

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