mbedtls_dh.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 Lesser 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 Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. #include <errno.h>
  14. #include <limits.h>
  15. #include "api.h"
  16. #include "assert.h"
  17. #include "pal.h"
  18. #include "pal_crypto.h"
  19. #include "pal_debug.h"
  20. #include "pal_error.h"
  21. #define BITS_PER_BYTE 8
  22. /* This is declared in pal_internal.h, but that can't be included here. */
  23. size_t _DkRandomBitsRead(void* buffer, size_t size);
  24. /* Wrapper to provide mbedtls the RNG interface it expects. It passes an
  25. * extra context parameter, and expects a return value of 0 for success
  26. * and nonzero for failure. */
  27. static int RandomWrapper(void* private, unsigned char* data, size_t size) {
  28. __UNUSED(private);
  29. return _DkRandomBitsRead(data, size);
  30. }
  31. int lib_DhInit(LIB_DH_CONTEXT* context) {
  32. int ret;
  33. mbedtls_dhm_init(context);
  34. /* Configure parameters. Note that custom Diffie-Hellman parameters
  35. * are considered more secure, but require more data be exchanged
  36. * between the two parties to establish the parameters, so we haven't
  37. * implemented that yet. */
  38. ret = mbedtls_mpi_read_string(&context->P, 16 /* radix */, MBEDTLS_DHM_RFC3526_MODP_2048_P);
  39. if (ret != 0) {
  40. pal_printf("D-H initialization failed: %d\n", ret);
  41. return ret;
  42. }
  43. ret = mbedtls_mpi_read_string(&context->G, 16 /* radix */, MBEDTLS_DHM_RFC3526_MODP_2048_G);
  44. if (ret != 0) {
  45. pal_printf("D-H initialization failed: %d\n", ret);
  46. return ret;
  47. }
  48. context->len = mbedtls_mpi_size(&context->P);
  49. return 0;
  50. }
  51. int lib_DhCreatePublic(LIB_DH_CONTEXT* context, uint8_t* public, uint64_t* public_size) {
  52. int ret;
  53. if (*public_size != DH_SIZE)
  54. return -PAL_ERROR_INVAL;
  55. /* The RNG here is used to generate secret exponent X. */
  56. ret = mbedtls_dhm_make_public(context, context->len, public, *public_size, RandomWrapper, NULL);
  57. if (ret != 0)
  58. return ret;
  59. /* mbedtls writes leading zeros in the big-endian output to pad to
  60. * public_size, so leave caller's public_size unchanged */
  61. return 0;
  62. }
  63. int lib_DhCalcSecret(LIB_DH_CONTEXT* context, uint8_t* peer, uint64_t peer_size, uint8_t* secret,
  64. uint64_t* secret_size) {
  65. int ret;
  66. if (*secret_size != DH_SIZE)
  67. return -PAL_ERROR_INVAL;
  68. ret = mbedtls_dhm_read_public(context, peer, peer_size);
  69. if (ret != 0)
  70. return ret;
  71. /* The RNG here is used for blinding against timing attacks if X is
  72. * reused and not used otherwise. mbedtls recommends always passing
  73. * in an RNG. */
  74. return mbedtls_dhm_calc_secret(context, secret, *secret_size, secret_size, RandomWrapper, NULL);
  75. }
  76. void lib_DhFinal(LIB_DH_CONTEXT* context) {
  77. /* This call zeros out context for us. */
  78. mbedtls_dhm_free(context);
  79. }