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.

369 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 FFmpeg.
  8. *
  9. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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
  50. #define bn_new(bn) \
  51. do { \
  52. bn = av_malloc(sizeof(*bn)); \
  53. if (bn) \
  54. mpz_init2(bn, 1); \
  55. } while (0)
  56. #define bn_free(bn) \
  57. do { \
  58. mpz_clear(bn); \
  59. av_free(bn); \
  60. } while (0)
  61. #define bn_set_word(bn, w) mpz_set_ui(bn, w)
  62. #define bn_cmp(a, b) mpz_cmp(a, b)
  63. #define bn_copy(to, from) mpz_set(to, from)
  64. #define bn_sub_word(bn, w) mpz_sub_ui(bn, bn, w)
  65. #define bn_cmp_1(bn) mpz_cmp_ui(bn, 1)
  66. #define bn_num_bytes(bn) (mpz_sizeinbase(bn, 2) + 7) / 8
  67. #define bn_bn2bin(bn, buf, len) \
  68. do { \
  69. memset(buf, 0, len); \
  70. if (bn_num_bytes(bn) <= len) \
  71. mpz_export(buf, NULL, 1, 1, 0, 0, bn); \
  72. } while (0)
  73. #define bn_bin2bn(bn, buf, len) \
  74. do { \
  75. bn_new(bn); \
  76. if (bn) \
  77. mpz_import(bn, len, 1, 1, 0, 0, buf); \
  78. } while (0)
  79. #define bn_hex2bn(bn, buf, ret) \
  80. do { \
  81. bn_new(bn); \
  82. if (bn) \
  83. ret = (mpz_set_str(bn, buf, 16) == 0); \
  84. else \
  85. ret = 1; \
  86. } while (0)
  87. #define bn_random(bn, num_bits) \
  88. do { \
  89. int bits = num_bits; \
  90. mpz_set_ui(bn, 0); \
  91. for (bits = num_bits; bits > 0; bits -= 32) { \
  92. mpz_mul_2exp(bn, bn, 32); \
  93. mpz_add_ui(bn, bn, av_get_random_seed()); \
  94. } \
  95. mpz_fdiv_r_2exp(bn, bn, num_bits); \
  96. } while (0)
  97. static int bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p)
  98. {
  99. mpz_powm(bn, y, q, p);
  100. return 0;
  101. }
  102. #elif CONFIG_GCRYPT
  103. #define bn_new(bn) \
  104. do { \
  105. if (!gcry_control(GCRYCTL_INITIALIZATION_FINISHED_P)) { \
  106. if (!gcry_check_version("1.5.4")) \
  107. return AVERROR(EINVAL); \
  108. gcry_control(GCRYCTL_DISABLE_SECMEM, 0); \
  109. gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0); \
  110. } \
  111. bn = gcry_mpi_new(1); \
  112. } while (0)
  113. #define bn_free(bn) gcry_mpi_release(bn)
  114. #define bn_set_word(bn, w) gcry_mpi_set_ui(bn, w)
  115. #define bn_cmp(a, b) gcry_mpi_cmp(a, b)
  116. #define bn_copy(to, from) gcry_mpi_set(to, from)
  117. #define bn_sub_word(bn, w) gcry_mpi_sub_ui(bn, bn, w)
  118. #define bn_cmp_1(bn) gcry_mpi_cmp_ui(bn, 1)
  119. #define bn_num_bytes(bn) (gcry_mpi_get_nbits(bn) + 7) / 8
  120. #define bn_bn2bin(bn, buf, len) gcry_mpi_print(GCRYMPI_FMT_USG, buf, len, NULL, bn)
  121. #define bn_bin2bn(bn, buf, len) gcry_mpi_scan(&bn, GCRYMPI_FMT_USG, buf, len, NULL)
  122. #define bn_hex2bn(bn, buf, ret) ret = (gcry_mpi_scan(&bn, GCRYMPI_FMT_HEX, buf, 0, 0) == 0)
  123. #define bn_random(bn, num_bits) gcry_mpi_randomize(bn, num_bits, GCRY_WEAK_RANDOM)
  124. static int bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p)
  125. {
  126. gcry_mpi_powm(bn, y, q, p);
  127. return 0;
  128. }
  129. #elif CONFIG_OPENSSL
  130. #define bn_new(bn) bn = BN_new()
  131. #define bn_free(bn) BN_free(bn)
  132. #define bn_set_word(bn, w) BN_set_word(bn, w)
  133. #define bn_cmp(a, b) BN_cmp(a, b)
  134. #define bn_copy(to, from) BN_copy(to, from)
  135. #define bn_sub_word(bn, w) BN_sub_word(bn, w)
  136. #define bn_cmp_1(bn) BN_cmp(bn, BN_value_one())
  137. #define bn_num_bytes(bn) BN_num_bytes(bn)
  138. #define bn_bn2bin(bn, buf, len) BN_bn2bin(bn, buf)
  139. #define bn_bin2bn(bn, buf, len) bn = BN_bin2bn(buf, len, 0)
  140. #define bn_hex2bn(bn, buf, ret) ret = BN_hex2bn(&bn, buf)
  141. #define bn_random(bn, num_bits) BN_rand(bn, num_bits, 0, 0)
  142. static int bn_modexp(FFBigNum bn, FFBigNum y, FFBigNum q, FFBigNum p)
  143. {
  144. BN_CTX *ctx = BN_CTX_new();
  145. if (!ctx)
  146. return AVERROR(ENOMEM);
  147. if (!BN_mod_exp(bn, y, q, p, ctx)) {
  148. BN_CTX_free(ctx);
  149. return AVERROR(EINVAL);
  150. }
  151. BN_CTX_free(ctx);
  152. return 0;
  153. }
  154. #endif
  155. #define MAX_BYTES 18000
  156. #define dh_new() av_mallocz(sizeof(FF_DH))
  157. static FFBigNum dh_generate_key(FF_DH *dh)
  158. {
  159. int num_bytes;
  160. num_bytes = bn_num_bytes(dh->p) - 1;
  161. if (num_bytes <= 0 || num_bytes > MAX_BYTES)
  162. return NULL;
  163. bn_new(dh->priv_key);
  164. if (!dh->priv_key)
  165. return NULL;
  166. bn_random(dh->priv_key, 8 * num_bytes);
  167. bn_new(dh->pub_key);
  168. if (!dh->pub_key) {
  169. bn_free(dh->priv_key);
  170. return NULL;
  171. }
  172. if (bn_modexp(dh->pub_key, dh->g, dh->priv_key, dh->p) < 0)
  173. return NULL;
  174. return dh->pub_key;
  175. }
  176. static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
  177. uint32_t secret_key_len, uint8_t *secret_key)
  178. {
  179. FFBigNum k;
  180. int ret;
  181. bn_new(k);
  182. if (!k)
  183. return -1;
  184. if ((ret = bn_modexp(k, pub_key_bn, dh->priv_key, dh->p)) < 0) {
  185. bn_free(k);
  186. return ret;
  187. }
  188. bn_bn2bin(k, secret_key, secret_key_len);
  189. bn_free(k);
  190. /* return the length of the shared secret key like DH_compute_key */
  191. return secret_key_len;
  192. }
  193. void ff_dh_free(FF_DH *dh)
  194. {
  195. if (!dh)
  196. return;
  197. bn_free(dh->p);
  198. bn_free(dh->g);
  199. bn_free(dh->pub_key);
  200. bn_free(dh->priv_key);
  201. av_free(dh);
  202. }
  203. static int dh_is_valid_public_key(FFBigNum y, FFBigNum p, FFBigNum q)
  204. {
  205. FFBigNum bn = NULL;
  206. int ret = AVERROR(EINVAL);
  207. bn_new(bn);
  208. if (!bn)
  209. return AVERROR(ENOMEM);
  210. /* y must lie in [2, p - 1] */
  211. bn_set_word(bn, 1);
  212. if (!bn_cmp(y, bn))
  213. goto fail;
  214. /* bn = p - 2 */
  215. bn_copy(bn, p);
  216. bn_sub_word(bn, 1);
  217. if (!bn_cmp(y, bn))
  218. goto fail;
  219. /* Verify with Sophie-Germain prime
  220. *
  221. * This is a nice test to make sure the public key position is calculated
  222. * correctly. This test will fail in about 50% of the cases if applied to
  223. * random data.
  224. */
  225. /* y must fulfill y^q mod p = 1 */
  226. if ((ret = bn_modexp(bn, y, q, p)) < 0)
  227. goto fail;
  228. ret = AVERROR(EINVAL);
  229. if (bn_cmp_1(bn))
  230. goto fail;
  231. ret = 0;
  232. fail:
  233. bn_free(bn);
  234. return ret;
  235. }
  236. av_cold FF_DH *ff_dh_init(int key_len)
  237. {
  238. FF_DH *dh;
  239. int ret;
  240. if (!(dh = dh_new()))
  241. return NULL;
  242. bn_new(dh->g);
  243. if (!dh->g)
  244. goto fail;
  245. bn_hex2bn(dh->p, P1024, ret);
  246. if (!ret)
  247. goto fail;
  248. bn_set_word(dh->g, 2);
  249. dh->length = key_len;
  250. return dh;
  251. fail:
  252. ff_dh_free(dh);
  253. return NULL;
  254. }
  255. int ff_dh_generate_public_key(FF_DH *dh)
  256. {
  257. int ret = 0;
  258. while (!ret) {
  259. FFBigNum q1 = NULL;
  260. if (!dh_generate_key(dh))
  261. return AVERROR(EINVAL);
  262. bn_hex2bn(q1, Q1024, ret);
  263. if (!ret)
  264. return AVERROR(ENOMEM);
  265. ret = dh_is_valid_public_key(dh->pub_key, dh->p, q1);
  266. bn_free(q1);
  267. if (!ret) {
  268. /* the public key is valid */
  269. break;
  270. }
  271. }
  272. return ret;
  273. }
  274. int ff_dh_write_public_key(FF_DH *dh, uint8_t *pub_key, int pub_key_len)
  275. {
  276. int len;
  277. /* compute the length of the public key */
  278. len = bn_num_bytes(dh->pub_key);
  279. if (len <= 0 || len > pub_key_len)
  280. return AVERROR(EINVAL);
  281. /* convert the public key value into big-endian form */
  282. memset(pub_key, 0, pub_key_len);
  283. bn_bn2bin(dh->pub_key, pub_key + pub_key_len - len, len);
  284. return 0;
  285. }
  286. int ff_dh_compute_shared_secret_key(FF_DH *dh, const uint8_t *pub_key,
  287. int pub_key_len, uint8_t *secret_key,
  288. int secret_key_len)
  289. {
  290. FFBigNum q1 = NULL, pub_key_bn = NULL;
  291. int ret;
  292. /* convert the big-endian form of the public key into a bignum */
  293. bn_bin2bn(pub_key_bn, pub_key, pub_key_len);
  294. if (!pub_key_bn)
  295. return AVERROR(ENOMEM);
  296. /* convert the string containing a hexadecimal number into a bignum */
  297. bn_hex2bn(q1, Q1024, ret);
  298. if (!ret) {
  299. ret = AVERROR(ENOMEM);
  300. goto fail;
  301. }
  302. /* when the public key is valid we have to compute the shared secret key */
  303. if ((ret = dh_is_valid_public_key(pub_key_bn, dh->p, q1)) < 0) {
  304. goto fail;
  305. } else if ((ret = dh_compute_key(dh, pub_key_bn, secret_key_len,
  306. secret_key)) < 0) {
  307. ret = AVERROR(EINVAL);
  308. goto fail;
  309. }
  310. fail:
  311. bn_free(pub_key_bn);
  312. bn_free(q1);
  313. return ret;
  314. }