platform.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /**
  2. * \file platform.h
  3. *
  4. * \brief This file contains the definitions and functions of the
  5. * Mbed TLS platform abstraction layer.
  6. *
  7. * The platform abstraction layer removes the need for the library
  8. * to directly link to standard C library functions or operating
  9. * system services, making the library easier to port and embed.
  10. * Application developers and users of the library can provide their own
  11. * implementations of these functions, or implementations specific to
  12. * their platform, which can be statically linked to the library or
  13. * dynamically configured at runtime.
  14. */
  15. /*
  16. * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved
  17. * SPDX-License-Identifier: Apache-2.0
  18. *
  19. * Licensed under the Apache License, Version 2.0 (the "License"); you may
  20. * not use this file except in compliance with the License.
  21. * You may obtain a copy of the License at
  22. *
  23. * http://www.apache.org/licenses/LICENSE-2.0
  24. *
  25. * Unless required by applicable law or agreed to in writing, software
  26. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  27. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  28. * See the License for the specific language governing permissions and
  29. * limitations under the License.
  30. *
  31. * This file is part of Mbed TLS (https://tls.mbed.org)
  32. */
  33. #ifndef MBEDTLS_PLATFORM_H
  34. #define MBEDTLS_PLATFORM_H
  35. #if !defined(MBEDTLS_CONFIG_FILE)
  36. #include "config.h"
  37. #else
  38. #include MBEDTLS_CONFIG_FILE
  39. #endif
  40. #if defined(MBEDTLS_HAVE_TIME)
  41. #include "platform_time.h"
  42. #endif
  43. #define MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED -0x0070 /**< Hardware accelerator failed */
  44. #define MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED -0x0072 /**< The requested feature is not supported by the platform */
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48. /**
  49. * \name SECTION: Module settings
  50. *
  51. * The configuration options you can set for this module are in this section.
  52. * Either change them in config.h or define them on the compiler command line.
  53. * \{
  54. */
  55. #if !defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS)
  56. #include <stdio.h>
  57. #include <stdlib.h>
  58. #include <time.h>
  59. #if !defined(MBEDTLS_PLATFORM_STD_SNPRINTF)
  60. #if defined(_WIN32)
  61. #define MBEDTLS_PLATFORM_STD_SNPRINTF mbedtls_platform_win32_snprintf /**< The default \c snprintf function to use. */
  62. #else
  63. #define MBEDTLS_PLATFORM_STD_SNPRINTF snprintf /**< The default \c snprintf function to use. */
  64. #endif
  65. #endif
  66. #if !defined(MBEDTLS_PLATFORM_STD_PRINTF)
  67. #define MBEDTLS_PLATFORM_STD_PRINTF printf /**< The default \c printf function to use. */
  68. #endif
  69. #if !defined(MBEDTLS_PLATFORM_STD_FPRINTF)
  70. #define MBEDTLS_PLATFORM_STD_FPRINTF fprintf /**< The default \c fprintf function to use. */
  71. #endif
  72. #if !defined(MBEDTLS_PLATFORM_STD_CALLOC)
  73. #define MBEDTLS_PLATFORM_STD_CALLOC calloc /**< The default \c calloc function to use. */
  74. #endif
  75. #if !defined(MBEDTLS_PLATFORM_STD_FREE)
  76. #define MBEDTLS_PLATFORM_STD_FREE free /**< The default \c free function to use. */
  77. #endif
  78. #if !defined(MBEDTLS_PLATFORM_STD_EXIT)
  79. #define MBEDTLS_PLATFORM_STD_EXIT exit /**< The default \c exit function to use. */
  80. #endif
  81. #if !defined(MBEDTLS_PLATFORM_STD_TIME)
  82. #define MBEDTLS_PLATFORM_STD_TIME time /**< The default \c time function to use. */
  83. #endif
  84. #if !defined(MBEDTLS_PLATFORM_STD_EXIT_SUCCESS)
  85. #define MBEDTLS_PLATFORM_STD_EXIT_SUCCESS EXIT_SUCCESS /**< The default exit value to use. */
  86. #endif
  87. #if !defined(MBEDTLS_PLATFORM_STD_EXIT_FAILURE)
  88. #define MBEDTLS_PLATFORM_STD_EXIT_FAILURE EXIT_FAILURE /**< The default exit value to use. */
  89. #endif
  90. #if defined(MBEDTLS_FS_IO)
  91. #if !defined(MBEDTLS_PLATFORM_STD_NV_SEED_READ)
  92. #define MBEDTLS_PLATFORM_STD_NV_SEED_READ mbedtls_platform_std_nv_seed_read
  93. #endif
  94. #if !defined(MBEDTLS_PLATFORM_STD_NV_SEED_WRITE)
  95. #define MBEDTLS_PLATFORM_STD_NV_SEED_WRITE mbedtls_platform_std_nv_seed_write
  96. #endif
  97. #if !defined(MBEDTLS_PLATFORM_STD_NV_SEED_FILE)
  98. #define MBEDTLS_PLATFORM_STD_NV_SEED_FILE "seedfile"
  99. #endif
  100. #endif /* MBEDTLS_FS_IO */
  101. #else /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */
  102. #if defined(MBEDTLS_PLATFORM_STD_MEM_HDR)
  103. #include MBEDTLS_PLATFORM_STD_MEM_HDR
  104. #endif
  105. #endif /* MBEDTLS_PLATFORM_NO_STD_FUNCTIONS */
  106. /* \} name SECTION: Module settings */
  107. /*
  108. * The function pointers for calloc and free.
  109. */
  110. #if defined(MBEDTLS_PLATFORM_MEMORY)
  111. #if defined(MBEDTLS_PLATFORM_FREE_MACRO) && \
  112. defined(MBEDTLS_PLATFORM_CALLOC_MACRO)
  113. #define mbedtls_free MBEDTLS_PLATFORM_FREE_MACRO
  114. #define mbedtls_calloc MBEDTLS_PLATFORM_CALLOC_MACRO
  115. #else
  116. /* For size_t */
  117. #include <stddef.h>
  118. extern void *mbedtls_calloc( size_t n, size_t size );
  119. extern void mbedtls_free( void *ptr );
  120. /**
  121. * \brief This function dynamically sets the memory-management
  122. * functions used by the library, during runtime.
  123. *
  124. * \param calloc_func The \c calloc function implementation.
  125. * \param free_func The \c free function implementation.
  126. *
  127. * \return \c 0.
  128. */
  129. int mbedtls_platform_set_calloc_free( void * (*calloc_func)( size_t, size_t ),
  130. void (*free_func)( void * ) );
  131. #endif /* MBEDTLS_PLATFORM_FREE_MACRO && MBEDTLS_PLATFORM_CALLOC_MACRO */
  132. #else /* !MBEDTLS_PLATFORM_MEMORY */
  133. #define mbedtls_free free
  134. #define mbedtls_calloc calloc
  135. #endif /* MBEDTLS_PLATFORM_MEMORY && !MBEDTLS_PLATFORM_{FREE,CALLOC}_MACRO */
  136. /*
  137. * The function pointers for fprintf
  138. */
  139. #if defined(MBEDTLS_PLATFORM_FPRINTF_ALT)
  140. /* We need FILE * */
  141. #include <stdio.h>
  142. extern int (*mbedtls_fprintf)( FILE *stream, const char *format, ... );
  143. /**
  144. * \brief This function dynamically configures the fprintf
  145. * function that is called when the
  146. * mbedtls_fprintf() function is invoked by the library.
  147. *
  148. * \param fprintf_func The \c fprintf function implementation.
  149. *
  150. * \return \c 0.
  151. */
  152. int mbedtls_platform_set_fprintf( int (*fprintf_func)( FILE *stream, const char *,
  153. ... ) );
  154. #else
  155. #if defined(MBEDTLS_PLATFORM_FPRINTF_MACRO)
  156. #define mbedtls_fprintf MBEDTLS_PLATFORM_FPRINTF_MACRO
  157. #else
  158. #define mbedtls_fprintf fprintf
  159. #endif /* MBEDTLS_PLATFORM_FPRINTF_MACRO */
  160. #endif /* MBEDTLS_PLATFORM_FPRINTF_ALT */
  161. /*
  162. * The function pointers for printf
  163. */
  164. #if defined(MBEDTLS_PLATFORM_PRINTF_ALT)
  165. extern int (*mbedtls_printf)( const char *format, ... );
  166. /**
  167. * \brief This function dynamically configures the snprintf
  168. * function that is called when the mbedtls_snprintf()
  169. * function is invoked by the library.
  170. *
  171. * \param printf_func The \c printf function implementation.
  172. *
  173. * \return \c 0 on success.
  174. */
  175. int mbedtls_platform_set_printf( int (*printf_func)( const char *, ... ) );
  176. #else /* !MBEDTLS_PLATFORM_PRINTF_ALT */
  177. #if defined(MBEDTLS_PLATFORM_PRINTF_MACRO)
  178. #define mbedtls_printf MBEDTLS_PLATFORM_PRINTF_MACRO
  179. #else
  180. #define mbedtls_printf printf
  181. #endif /* MBEDTLS_PLATFORM_PRINTF_MACRO */
  182. #endif /* MBEDTLS_PLATFORM_PRINTF_ALT */
  183. /*
  184. * The function pointers for snprintf
  185. *
  186. * The snprintf implementation should conform to C99:
  187. * - it *must* always correctly zero-terminate the buffer
  188. * (except when n == 0, then it must leave the buffer untouched)
  189. * - however it is acceptable to return -1 instead of the required length when
  190. * the destination buffer is too short.
  191. */
  192. #if defined(_WIN32)
  193. /* For Windows (inc. MSYS2), we provide our own fixed implementation */
  194. int mbedtls_platform_win32_snprintf( char *s, size_t n, const char *fmt, ... );
  195. #endif
  196. #if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT)
  197. extern int (*mbedtls_snprintf)( char * s, size_t n, const char * format, ... );
  198. /**
  199. * \brief This function allows configuring a custom
  200. * \c snprintf function pointer.
  201. *
  202. * \param snprintf_func The \c snprintf function implementation.
  203. *
  204. * \return \c 0 on success.
  205. */
  206. int mbedtls_platform_set_snprintf( int (*snprintf_func)( char * s, size_t n,
  207. const char * format, ... ) );
  208. #else /* MBEDTLS_PLATFORM_SNPRINTF_ALT */
  209. #if defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO)
  210. #define mbedtls_snprintf MBEDTLS_PLATFORM_SNPRINTF_MACRO
  211. #else
  212. #define mbedtls_snprintf MBEDTLS_PLATFORM_STD_SNPRINTF
  213. #endif /* MBEDTLS_PLATFORM_SNPRINTF_MACRO */
  214. #endif /* MBEDTLS_PLATFORM_SNPRINTF_ALT */
  215. /*
  216. * The function pointers for exit
  217. */
  218. #if defined(MBEDTLS_PLATFORM_EXIT_ALT)
  219. extern void (*mbedtls_exit)( int status );
  220. /**
  221. * \brief This function dynamically configures the exit
  222. * function that is called when the mbedtls_exit()
  223. * function is invoked by the library.
  224. *
  225. * \param exit_func The \c exit function implementation.
  226. *
  227. * \return \c 0 on success.
  228. */
  229. int mbedtls_platform_set_exit( void (*exit_func)( int status ) );
  230. #else
  231. #if defined(MBEDTLS_PLATFORM_EXIT_MACRO)
  232. #define mbedtls_exit MBEDTLS_PLATFORM_EXIT_MACRO
  233. #else
  234. #define mbedtls_exit exit
  235. #endif /* MBEDTLS_PLATFORM_EXIT_MACRO */
  236. #endif /* MBEDTLS_PLATFORM_EXIT_ALT */
  237. /*
  238. * The default exit values
  239. */
  240. #if defined(MBEDTLS_PLATFORM_STD_EXIT_SUCCESS)
  241. #define MBEDTLS_EXIT_SUCCESS MBEDTLS_PLATFORM_STD_EXIT_SUCCESS
  242. #else
  243. #define MBEDTLS_EXIT_SUCCESS 0
  244. #endif
  245. #if defined(MBEDTLS_PLATFORM_STD_EXIT_FAILURE)
  246. #define MBEDTLS_EXIT_FAILURE MBEDTLS_PLATFORM_STD_EXIT_FAILURE
  247. #else
  248. #define MBEDTLS_EXIT_FAILURE 1
  249. #endif
  250. /*
  251. * The function pointers for reading from and writing a seed file to
  252. * Non-Volatile storage (NV) in a platform-independent way
  253. *
  254. * Only enabled when the NV seed entropy source is enabled
  255. */
  256. #if defined(MBEDTLS_ENTROPY_NV_SEED)
  257. #if !defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) && defined(MBEDTLS_FS_IO)
  258. /* Internal standard platform definitions */
  259. int mbedtls_platform_std_nv_seed_read( unsigned char *buf, size_t buf_len );
  260. int mbedtls_platform_std_nv_seed_write( unsigned char *buf, size_t buf_len );
  261. #endif
  262. #if defined(MBEDTLS_PLATFORM_NV_SEED_ALT)
  263. extern int (*mbedtls_nv_seed_read)( unsigned char *buf, size_t buf_len );
  264. extern int (*mbedtls_nv_seed_write)( unsigned char *buf, size_t buf_len );
  265. /**
  266. * \brief This function allows configuring custom seed file writing and
  267. * reading functions.
  268. *
  269. * \param nv_seed_read_func The seed reading function implementation.
  270. * \param nv_seed_write_func The seed writing function implementation.
  271. *
  272. * \return \c 0 on success.
  273. */
  274. int mbedtls_platform_set_nv_seed(
  275. int (*nv_seed_read_func)( unsigned char *buf, size_t buf_len ),
  276. int (*nv_seed_write_func)( unsigned char *buf, size_t buf_len )
  277. );
  278. #else
  279. #if defined(MBEDTLS_PLATFORM_NV_SEED_READ_MACRO) && \
  280. defined(MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO)
  281. #define mbedtls_nv_seed_read MBEDTLS_PLATFORM_NV_SEED_READ_MACRO
  282. #define mbedtls_nv_seed_write MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO
  283. #else
  284. #define mbedtls_nv_seed_read mbedtls_platform_std_nv_seed_read
  285. #define mbedtls_nv_seed_write mbedtls_platform_std_nv_seed_write
  286. #endif
  287. #endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */
  288. #endif /* MBEDTLS_ENTROPY_NV_SEED */
  289. #if !defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT)
  290. /**
  291. * \brief The platform context structure.
  292. *
  293. * \note This structure may be used to assist platform-specific
  294. * setup or teardown operations.
  295. */
  296. typedef struct mbedtls_platform_context
  297. {
  298. char dummy; /**< A placeholder member, as empty structs are not portable. */
  299. }
  300. mbedtls_platform_context;
  301. #else
  302. #include "platform_alt.h"
  303. #endif /* !MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */
  304. /**
  305. * \brief This function performs any platform-specific initialization
  306. * operations.
  307. *
  308. * \note This function should be called before any other library functions.
  309. *
  310. * Its implementation is platform-specific, and unless
  311. * platform-specific code is provided, it does nothing.
  312. *
  313. * \note The usage and necessity of this function is dependent on the platform.
  314. *
  315. * \param ctx The platform context.
  316. *
  317. * \return \c 0 on success.
  318. */
  319. int mbedtls_platform_setup( mbedtls_platform_context *ctx );
  320. /**
  321. * \brief This function performs any platform teardown operations.
  322. *
  323. * \note This function should be called after every other Mbed TLS module
  324. * has been correctly freed using the appropriate free function.
  325. *
  326. * Its implementation is platform-specific, and unless
  327. * platform-specific code is provided, it does nothing.
  328. *
  329. * \note The usage and necessity of this function is dependent on the platform.
  330. *
  331. * \param ctx The platform context.
  332. *
  333. */
  334. void mbedtls_platform_teardown( mbedtls_platform_context *ctx );
  335. #ifdef __cplusplus
  336. }
  337. #endif
  338. #endif /* platform.h */