zephyr_init.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /** @file
  2. * @brief mbed TLS initialization
  3. *
  4. * Initialize the mbed TLS library like setup the heap etc.
  5. */
  6. /*
  7. * Copyright (c) 2017 Intel Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #include <stdlib.h>
  12. #include <init.h>
  13. #include <app_memory/app_memdomain.h>
  14. #if defined(CONFIG_MBEDTLS)
  15. #if !defined(CONFIG_MBEDTLS_CFG_FILE)
  16. #include "mbedtls/config.h"
  17. #else
  18. #include CONFIG_MBEDTLS_CFG_FILE
  19. #endif /* CONFIG_MBEDTLS_CFG_FILE */
  20. #endif
  21. #if defined(CONFIG_MBEDTLS_ENABLE_HEAP) && \
  22. defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
  23. #include <mbedtls/memory_buffer_alloc.h>
  24. #if !defined(CONFIG_MBEDTLS_HEAP_SIZE)
  25. #error "Please set heap size to be used. Set value to CONFIG_MBEDTLS_HEAP_SIZE \
  26. option."
  27. #endif
  28. static unsigned char _mbedtls_heap[CONFIG_MBEDTLS_HEAP_SIZE];
  29. static void init_heap(void)
  30. {
  31. mbedtls_memory_buffer_alloc_init(_mbedtls_heap, sizeof(_mbedtls_heap));
  32. }
  33. #else
  34. #define init_heap(...)
  35. #endif /* CONFIG_MBEDTLS_ENABLE_HEAP && MBEDTLS_MEMORY_BUFFER_ALLOC_C */
  36. static int _mbedtls_init(const struct device *device)
  37. {
  38. ARG_UNUSED(device);
  39. init_heap();
  40. return 0;
  41. }
  42. SYS_INIT(_mbedtls_init, POST_KERNEL, 0);
  43. #ifdef MBEDTLS_ENTROPY_HARDWARE_ALT
  44. static int os_get_random(unsigned char *buf, size_t len)
  45. {
  46. size_t i, j;
  47. unsigned long tmp;
  48. for (i = 0; i < ((len + 3) & ~3) / 4; i++)
  49. {
  50. tmp = rand();
  51. for (j = 0; j < 4; j++)
  52. {
  53. if ((i * 4 + j) < len)
  54. {
  55. buf[i * 4 + j] = (unsigned char)(tmp >> (j * 8));
  56. }
  57. else
  58. {
  59. break;
  60. }
  61. }
  62. }
  63. return 0;
  64. }
  65. int mbedtls_hardware_poll( void *data, unsigned char *output, size_t len, size_t *olen )
  66. {
  67. os_get_random(output, len);
  68. *olen = len;
  69. return 0;
  70. }
  71. #endif