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.

372 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 || 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) \
  101. do { \
  102. if (!gcry_control(GCRYCTL_INITIALIZATION_FINISHED_P)) { \
  103. if (!gcry_check_version("1.5.4")) \
  104. return AVERROR(EINVAL); \
  105. gcry_control(GCRYCTL_DISABLE_SECMEM, 0); \
  106. gcry_control(GCRYCTL_INITIALIZATION_FINISHED, 0); \
  107. } \
  108. bn = gcry_mpi_new(1); \
  109. } while (0)
  110. #define bn_free(bn) gcry_mpi_release(bn)
  111. #define bn_set_word(bn, w) gcry_mpi_set_ui(bn, w)
  112. #define bn_cmp(a, b) gcry_mpi_cmp(a, b)
  113. #define bn_copy(to, from) gcry_mpi_set(to, from)
  114. #define bn_sub_word(bn, w) gcry_mpi_sub_ui(bn, bn, w)
  115. #define bn_cmp_1(bn) gcry_mpi_cmp_ui(bn, 1)
  116. #define bn_num_bytes(bn) (gcry_mpi_get_nbits(bn) + 7) / 8
  117. #define bn_bn2bin(bn, buf, len) gcry_mpi_print(GCRYMPI_FMT_USG, buf, len, NULL, bn)
  118. #define bn_bin2bn(bn, buf, len) gcry_mpi_scan(&bn, GCRYMPI_FMT_USG, buf, len, NULL)
  119. #define bn_hex2bn(bn, buf, ret) ret = (gcry_mpi_scan(&bn, GCRYMPI_FMT_HEX, buf, 0, 0) == 0)
  120. #define bn_modexp(bn, y, q, p) gcry_mpi_powm(bn, y, q, p)
  121. #define bn_random(bn, num_bits) gcry_mpi_randomize(bn, num_bits, GCRY_WEAK_RANDOM)
  122. #endif
  123. #define MAX_BYTES 18000
  124. #define dh_new() av_malloc(sizeof(FF_DH))
  125. static FFBigNum dh_generate_key(FF_DH *dh)
  126. {
  127. int num_bytes;
  128. num_bytes = bn_num_bytes(dh->p) - 1;
  129. if (num_bytes <= 0 || num_bytes > MAX_BYTES)
  130. return NULL;
  131. bn_new(dh->priv_key);
  132. if (!dh->priv_key)
  133. return NULL;
  134. bn_random(dh->priv_key, 8 * num_bytes);
  135. bn_new(dh->pub_key);
  136. if (!dh->pub_key) {
  137. bn_free(dh->priv_key);
  138. return NULL;
  139. }
  140. bn_modexp(dh->pub_key, dh->g, dh->priv_key, dh->p);
  141. return dh->pub_key;
  142. }
  143. static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
  144. uint32_t secret_key_len, uint8_t *secret_key)
  145. {
  146. FFBigNum k;
  147. bn_new(k);
  148. if (!k)
  149. return -1;
  150. bn_modexp(k, pub_key_bn, dh->priv_key, dh->p);
  151. bn_bn2bin(k, secret_key, secret_key_len);
  152. bn_free(k);
  153. /* return the length of the shared secret key like DH_compute_key */
  154. return secret_key_len;
  155. }
  156. void ff_dh_free(FF_DH *dh)
  157. {
  158. if (!dh)
  159. return;
  160. bn_free(dh->p);
  161. bn_free(dh->g);
  162. bn_free(dh->pub_key);
  163. bn_free(dh->priv_key);
  164. av_free(dh);
  165. }
  166. #elif CONFIG_OPENSSL
  167. #define bn_new(bn) bn = BN_new()
  168. #define bn_free(bn) BN_free(bn)
  169. #define bn_set_word(bn, w) BN_set_word(bn, w)
  170. #define bn_cmp(a, b) BN_cmp(a, b)
  171. #define bn_copy(to, from) BN_copy(to, from)
  172. #define bn_sub_word(bn, w) BN_sub_word(bn, w)
  173. #define bn_cmp_1(bn) BN_cmp(bn, BN_value_one())
  174. #define bn_num_bytes(bn) BN_num_bytes(bn)
  175. #define bn_bn2bin(bn, buf, len) BN_bn2bin(bn, buf)
  176. #define bn_bin2bn(bn, buf, len) bn = BN_bin2bn(buf, len, 0)
  177. #define bn_hex2bn(bn, buf, ret) ret = BN_hex2bn(&bn, buf)
  178. #define bn_modexp(bn, y, q, p) \
  179. do { \
  180. BN_CTX *ctx = BN_CTX_new(); \
  181. if (!ctx) \
  182. return AVERROR(ENOMEM); \
  183. if (!BN_mod_exp(bn, y, q, p, ctx)) { \
  184. BN_CTX_free(ctx); \
  185. return AVERROR(EINVAL); \
  186. } \
  187. BN_CTX_free(ctx); \
  188. } while (0)
  189. #define dh_new() DH_new()
  190. #define dh_generate_key(dh) DH_generate_key(dh)
  191. static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn,
  192. uint32_t secret_key_len, uint8_t *secret_key)
  193. {
  194. if (secret_key_len < DH_size(dh))
  195. return AVERROR(EINVAL);
  196. return DH_compute_key(secret_key, pub_key_bn, dh);
  197. }
  198. void ff_dh_free(FF_DH *dh)
  199. {
  200. if (!dh)
  201. return;
  202. DH_free(dh);
  203. }
  204. #endif
  205. static int dh_is_valid_public_key(FFBigNum y, FFBigNum p, FFBigNum q)
  206. {
  207. FFBigNum bn = NULL;
  208. int ret = AVERROR(EINVAL);
  209. bn_new(bn);
  210. if (!bn)
  211. return AVERROR(ENOMEM);
  212. /* y must lie in [2, p - 1] */
  213. bn_set_word(bn, 1);
  214. if (!bn_cmp(y, bn))
  215. goto fail;
  216. /* bn = p - 2 */
  217. bn_copy(bn, p);
  218. bn_sub_word(bn, 1);
  219. if (!bn_cmp(y, bn))
  220. goto fail;
  221. /* Verify with Sophie-Germain prime
  222. *
  223. * This is a nice test to make sure the public key position is calculated
  224. * correctly. This test will fail in about 50% of the cases if applied to
  225. * random data.
  226. */
  227. /* y must fulfill y^q mod p = 1 */
  228. bn_modexp(bn, y, q, p);
  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. }