rtmpdh.c 9.9 KB

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