mbedtls_dh.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Copyright (C) 2017 Fortanix, Inc.
  2. This file is part of Graphene Library OS.
  3. Graphene Library OS is free software: you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License
  5. as published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. Graphene Library OS is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. #include "pal.h"
  14. #include "pal_crypto.h"
  15. #include "pal_error.h"
  16. #include "pal_debug.h"
  17. #include "assert.h"
  18. /* This is declared in pal_internal.h, but that can't be included here. */
  19. int _DkRandomBitsRead(void *buffer, int size);
  20. /* Wrapper to provide mbedtls the RNG interface it expects. It passes an
  21. * extra context parameter, and expects a return value of 0 for success
  22. * and nonzero for failure. */
  23. static int RandomWrapper(void *private, unsigned char *data, size_t size)
  24. {
  25. return _DkRandomBitsRead(data, size) != size;
  26. }
  27. int lib_DhInit(LIB_DH_CONTEXT *context)
  28. {
  29. int ret;
  30. mbedtls_dhm_init(context);
  31. /* Configure parameters. Note that custom Diffie-Hellman parameters
  32. * are considered more secure, but require more data be exchanged
  33. * between the two parties to establish the parameters, so we haven't
  34. * implemented that yet. */
  35. ret = mbedtls_mpi_read_string(&context->P, 16 /* radix */,
  36. MBEDTLS_DHM_RFC3526_MODP_2048_P);
  37. if (ret != 0) {
  38. pal_printf("D-H initialization failed: %d\n", ret);
  39. return ret;
  40. }
  41. ret = mbedtls_mpi_read_string(&context->G, 16 /* radix */,
  42. MBEDTLS_DHM_RFC3526_MODP_2048_G);
  43. if (ret != 0) {
  44. pal_printf("D-H initialization failed: %d\n", ret);
  45. return ret;
  46. }
  47. context->len = mbedtls_mpi_size(&context->P);
  48. return 0;
  49. }
  50. int lib_DhCreatePublic(LIB_DH_CONTEXT *context, uint8_t *public,
  51. uint64_t *public_size)
  52. {
  53. int ret;
  54. if (*public_size != DH_SIZE)
  55. return -PAL_ERROR_INVAL;
  56. /* The RNG here is used to generate secret exponent X. */
  57. ret = mbedtls_dhm_make_public(context, context->len, public, *public_size,
  58. RandomWrapper, NULL);
  59. if (ret != 0)
  60. return ret;
  61. /* mbedtls writes leading zeros in the big-endian output to pad to
  62. * public_size, so leave caller's public_size unchanged */
  63. return 0;
  64. }
  65. int lib_DhCalcSecret(LIB_DH_CONTEXT *context, uint8_t *peer, uint64_t peer_size,
  66. uint8_t *secret, uint64_t *secret_size)
  67. {
  68. int ret;
  69. if (*secret_size != DH_SIZE)
  70. return -PAL_ERROR_INVAL;
  71. ret = mbedtls_dhm_read_public(context, peer, peer_size);
  72. if (ret != 0)
  73. return ret;
  74. /* The RNG here is used for blinding against timing attacks if X is
  75. * reused and not used otherwise. mbedtls recommends always passing
  76. * in an RNG. */
  77. return mbedtls_dhm_calc_secret(context, secret, *secret_size, secret_size,
  78. RandomWrapper, NULL);
  79. }
  80. void lib_DhFinal(LIB_DH_CONTEXT *context)
  81. {
  82. /* This call zeros out context for us. */
  83. mbedtls_dhm_free(context);
  84. }