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.

363 lines
11KB

  1. /*
  2. * RTMP Diffie-Hellmann utilities
  3. * Copyright (c) 2009 Andrej Stepanchuk
  4. * Copyright (c) 2009-2010 Howard Chu
  5. * Copyright (c) 2012 Samuel Pitoiset
  6. *
  7. * This file is part of Libav.
  8. *
  9. * Libav is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * Libav is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /**
  24. * @file
  25. * RTMP Diffie-Hellmann utilities
  26. */
  27. #include <stdint.h>
  28. #include <string.h>
  29. #include "config.h"
  30. #include "libavutil/attributes.h"
  31. #include "libavutil/error.h"
  32. #include "libavutil/mem.h"
  33. #include "libavutil/random_seed.h"
  34. #include "rtmpdh.h"
  35. #define P1024 \
  36. "FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1" \
  37. "29024E088A67CC74020BBEA63B139B22514A08798E3404DD" \
  38. "EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245" \
  39. "E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED" \
  40. "EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE65381" \
  41. "FFFFFFFFFFFFFFFF"
  42. #define Q1024 \
  43. "7FFFFFFFFFFFFFFFE487ED5110B4611A62633145C06E0E68" \
  44. "948127044533E63A0105DF531D89CD9128A5043CC71A026E" \
  45. "F7CA8CD9E69D218D98158536F92F8A1BA7F09AB6B6A8E122" \
  46. "F242DABB312F3F637A262174D31BF6B585FFAE5B7A035BF6" \
  47. "F71C35FDAD44CFD2D74F9208BE258FF324943328F67329C0" \
  48. "FFFFFFFFFFFFFFFF"
  49. #if CONFIG_GMP || CONFIG_GCRYPT
  50. #if CONFIG_GMP
  51. #define bn_new(bn) \
  52. do { \
  53. bn = av_malloc(sizeof(*bn)); \
  54. if (bn) \
  55. mpz_init2(bn, 1); \
  56. } while (0)
  57. #define bn_free(bn) \
  58. do { \
  59. mpz_clear(bn); \
  60. av_free(bn); \
  61. } while (0)
  62. #define bn_set_word(bn, w) mpz_set_ui(bn, w)
  63. #define bn_cmp(a, b) mpz_cmp(a, b)
  64. #define bn_copy(to, from) mpz_set(to, from)
  65. #define bn_sub_word(bn, w) mpz_sub_ui(bn, bn, w)
  66. #define bn_cmp_1(bn) mpz_cmp_ui(bn, 1)
  67. #define bn_num_bytes(bn) (mpz_sizeinbase(bn, 2) + 7) / 8
  68. #define bn_bn2bin(bn, buf, len) \
  69. do { \
  70. memset(buf, 0, len); \
  71. if (bn_num_bytes(bn) <= len) \
  72. mpz_export(buf, NULL, 1, 1, 0, 0, bn); \
  73. } while (0)
  74. #define bn_bin2bn(bn, buf, len) \
  75. do { \
  76. bn_new(bn); \
  77. if (bn) \
  78. mpz_import(bn, len, 1, 1, 0, 0, buf); \
  79. } while (0)
  80. #define bn_hex2bn(bn, buf, ret) \
  81. do { \
  82. bn_new(bn); \
  83. if (bn) \
  84. ret = (mpz_set_str(bn, buf, 16) == 0); \
  85. else \
  86. ret = 1; \
  87. } while (0)
  88. #define bn_modexp(bn, y, q, p) mpz_powm(bn, y, q, p)
  89. #define bn_random(bn, num_bits) \
  90. do { \
  91. int bits = num_bits; \
  92. mpz_set_ui(bn, 0); \
  93. for (bits = num_bits; bits > 0; bits -= 32) { \
  94. mpz_mul_2exp(bn, bn, 32); \
  95. mpz_add_ui(bn, bn, av_get_random_seed()); \
  96. } \
  97. mpz_fdiv_r_2exp(bn, bn, num_bits); \
  98. } while (0)
  99. #elif CONFIG_GCRYPT
  100. #define bn_new(bn) bn = gcry_mpi_new(1)
  101. #define bn_free(bn) gcry_mpi_release(bn)
  102. #define bn_set_word(bn, w) gcry_mpi_set_ui(bn, w)
  103. #define bn_cmp(a, b) gcry_mpi_cmp(a, b)
  104. #define bn_copy(to, from) gcry_mpi_set(to, from)
  105. #define bn_sub_word(bn, w) gcry_mpi_sub_ui(bn, bn, w)
  106. #define bn_cmp_1(bn) gcry_mpi_cmp_ui(bn, 1)
  107. #define bn_num_bytes(bn) (gcry_mpi_get_nbits(bn) + 7) / 8
  108. #define bn_bn2bin(bn, buf, len) gcry_mpi_print(GCRYMPI_FMT_USG, buf, len, NULL, bn)
  109. #define bn_bin2bn(bn, buf, len) gcry_mpi_scan(&bn, GCRYMPI_FMT_USG, buf, len, NULL)
  110. #define bn_hex2bn(bn, buf, ret) ret = (gcry_mpi_scan(&bn, GCRYMPI_FMT_HEX, buf, 0, 0) == 0)
  111. #define bn_modexp(bn, y, q, p) gcry_mpi_powm(bn, y, q, p)
  112. #define bn_random(bn, num_bits) gcry_mpi_randomize(bn, num_bits, GCRY_WEAK_RANDOM)
  113. #endif
  114. #define MAX_BYTES 18000
  115. #define dh_new() av_malloc(sizeof(FF_DH))
  116. static FFBigNum dh_generate_key(FF_DH *dh)
  117. {
  118. int num_bytes;
  119. num_bytes = bn_num_bytes(dh->p) - 1;
  120. if (num_bytes <= 0 || num_bytes > MAX_BYTES)
  121. return NULL;
  122. bn_new(dh->priv_key);
  123. if (!dh->priv_key)
  124. return NULL;
  125. bn_random(dh->priv_key, 8 * num_bytes);
  126. bn_new(dh->pub_key);
  127. if (!dh->pub_key) {
  128. bn_free(dh->priv_key);
  129. return NULL;
  130. }
  131. bn_modexp(dh->pub_key, dh->g, dh->priv_key, dh->p);
  132. return dh->pub_key;
  133. }
  134. static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
  135. uint32_t secret_key_len, uint8_t *secret_key)
  136. {
  137. FFBigNum k;
  138. bn_new(k);
  139. if (!k)
  140. return -1;
  141. bn_modexp(k, pub_key_bn, dh->priv_key, dh->p);
  142. bn_bn2bin(k, secret_key, secret_key_len);
  143. bn_free(k);
  144. /* return the length of the shared secret key like DH_compute_key */
  145. return secret_key_len;
  146. }
  147. void ff_dh_free(FF_DH *dh)
  148. {
  149. if (!dh)
  150. return;
  151. bn_free(dh->p);
  152. bn_free(dh->g);
  153. bn_free(dh->pub_key);
  154. bn_free(dh->priv_key);
  155. av_free(dh);
  156. }
  157. #elif CONFIG_OPENSSL
  158. #define bn_new(bn) bn = BN_new()
  159. #define bn_free(bn) BN_free(bn)
  160. #define bn_set_word(bn, w) BN_set_word(bn, w)
  161. #define bn_cmp(a, b) BN_cmp(a, b)
  162. #define bn_copy(to, from) BN_copy(to, from)
  163. #define bn_sub_word(bn, w) BN_sub_word(bn, w)
  164. #define bn_cmp_1(bn) BN_cmp(bn, BN_value_one())
  165. #define bn_num_bytes(bn) BN_num_bytes(bn)
  166. #define bn_bn2bin(bn, buf, len) BN_bn2bin(bn, buf)
  167. #define bn_bin2bn(bn, buf, len) bn = BN_bin2bn(buf, len, 0)
  168. #define bn_hex2bn(bn, buf, ret) ret = BN_hex2bn(&bn, buf)
  169. #define bn_modexp(bn, y, q, p) \
  170. do { \
  171. BN_CTX *ctx = BN_CTX_new(); \
  172. if (!ctx) \
  173. return AVERROR(ENOMEM); \
  174. if (!BN_mod_exp(bn, y, q, p, ctx)) { \
  175. BN_CTX_free(ctx); \
  176. return AVERROR(EINVAL); \
  177. } \
  178. BN_CTX_free(ctx); \
  179. } while (0)
  180. #define dh_new() DH_new()
  181. #define dh_generate_key(dh) DH_generate_key(dh)
  182. static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
  183. uint32_t secret_key_len, uint8_t *secret_key)
  184. {
  185. if (secret_key_len < DH_size(dh))
  186. return AVERROR(EINVAL);
  187. return DH_compute_key(secret_key, pub_key_bn, dh);
  188. }
  189. void ff_dh_free(FF_DH *dh)
  190. {
  191. if (!dh)
  192. return;
  193. DH_free(dh);
  194. }
  195. #endif
  196. static int dh_is_valid_public_key(FFBigNum y, FFBigNum p, FFBigNum q)
  197. {
  198. FFBigNum bn = NULL;
  199. int ret = AVERROR(EINVAL);
  200. bn_new(bn);
  201. if (!bn)
  202. return AVERROR(ENOMEM);
  203. /* y must lie in [2, p - 1] */
  204. bn_set_word(bn, 1);
  205. if (!bn_cmp(y, bn))
  206. goto fail;
  207. /* bn = p - 2 */
  208. bn_copy(bn, p);
  209. bn_sub_word(bn, 1);
  210. if (!bn_cmp(y, bn))
  211. goto fail;
  212. /* Verify with Sophie-Germain prime
  213. *
  214. * This is a nice test to make sure the public key position is calculated
  215. * correctly. This test will fail in about 50% of the cases if applied to
  216. * random data.
  217. */
  218. /* y must fulfill y^q mod p = 1 */
  219. bn_modexp(bn, y, q, p);
  220. if (bn_cmp_1(bn))
  221. goto fail;
  222. ret = 0;
  223. fail:
  224. bn_free(bn);
  225. return ret;
  226. }
  227. av_cold FF_DH *ff_dh_init(int key_len)
  228. {
  229. FF_DH *dh;
  230. int ret;
  231. if (!(dh = dh_new()))
  232. return NULL;
  233. bn_new(dh->g);
  234. if (!dh->g)
  235. goto fail;
  236. bn_hex2bn(dh->p, P1024, ret);
  237. if (!ret)
  238. goto fail;
  239. bn_set_word(dh->g, 2);
  240. dh->length = key_len;
  241. return dh;
  242. fail:
  243. ff_dh_free(dh);
  244. return NULL;
  245. }
  246. int ff_dh_generate_public_key(FF_DH *dh)
  247. {
  248. int ret = 0;
  249. while (!ret) {
  250. FFBigNum q1 = NULL;
  251. if (!dh_generate_key(dh))
  252. return AVERROR(EINVAL);
  253. bn_hex2bn(q1, Q1024, ret);
  254. if (!ret)
  255. return AVERROR(ENOMEM);
  256. ret = dh_is_valid_public_key(dh->pub_key, dh->p, q1);
  257. bn_free(q1);
  258. if (!ret) {
  259. /* the public key is valid */
  260. break;
  261. }
  262. }
  263. return ret;
  264. }
  265. int ff_dh_write_public_key(FF_DH *dh, uint8_t *pub_key, int pub_key_len)
  266. {
  267. int len;
  268. /* compute the length of the public key */
  269. len = bn_num_bytes(dh->pub_key);
  270. if (len <= 0 || len > pub_key_len)
  271. return AVERROR(EINVAL);
  272. /* convert the public key value into big-endian form */
  273. memset(pub_key, 0, pub_key_len);
  274. bn_bn2bin(dh->pub_key, pub_key + pub_key_len - len, len);
  275. return 0;
  276. }
  277. int ff_dh_compute_shared_secret_key(FF_DH *dh, const uint8_t *pub_key,
  278. int pub_key_len, uint8_t *secret_key,
  279. int secret_key_len)
  280. {
  281. FFBigNum q1 = NULL, pub_key_bn = NULL;
  282. int ret;
  283. /* convert the big-endian form of the public key into a bignum */
  284. bn_bin2bn(pub_key_bn, pub_key, pub_key_len);
  285. if (!pub_key_bn)
  286. return AVERROR(ENOMEM);
  287. /* convert the string containing a hexadecimal number into a bignum */
  288. bn_hex2bn(q1, Q1024, ret);
  289. if (!ret) {
  290. ret = AVERROR(ENOMEM);
  291. goto fail;
  292. }
  293. /* when the public key is valid we have to compute the shared secret key */
  294. if ((ret = dh_is_valid_public_key(pub_key_bn, dh->p, q1)) < 0) {
  295. goto fail;
  296. } else if ((ret = dh_compute_key(dh, pub_key_bn, secret_key_len,
  297. secret_key)) < 0) {
  298. ret = AVERROR(EINVAL);
  299. goto fail;
  300. }
  301. fail:
  302. bn_free(pub_key_bn);
  303. bn_free(q1);
  304. return ret;
  305. }