sys-context-util.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /* SPDX-License-Identifier: BSD-2-Clause */
  2. /***********************************************************************
  3. * Copyright (c) 2017-2018, Intel Corporation
  4. *
  5. * All rights reserved.
  6. ***********************************************************************/
  7. #ifdef HAVE_CONFIG_H
  8. #include <config.h>
  9. #endif
  10. #include <errno.h>
  11. #include <inttypes.h>
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #include <string.h>
  15. #include "tss2_tcti_device.h"
  16. #include "tss2_tcti_mssim.h"
  17. #include "tss2_tcti_swtpm.h"
  18. #ifdef TCTI_FUZZING
  19. #include "tss2_tcti_fuzzing.h"
  20. #endif /* TCTI_FUZZING */
  21. #include "context-util.h"
  22. #include "tss2-tcti/tcti-mssim.h"
  23. #include "tss2-tcti/tcti-swtpm.h"
  24. #ifdef TCTI_DEVICE
  25. /*
  26. * Initialize a TSS2_TCTI_CONTEXT for the device TCTI.
  27. */
  28. TSS2_TCTI_CONTEXT *
  29. tcti_device_init(char const *device_path)
  30. {
  31. size_t size;
  32. TSS2_RC rc;
  33. TSS2_TCTI_CONTEXT *tcti_ctx;
  34. rc = Tss2_Tcti_Device_Init(NULL, &size, 0);
  35. if (rc != TSS2_RC_SUCCESS) {
  36. fprintf(stderr,
  37. "Failed to get allocation size for device tcti context: "
  38. "0x%x\n", rc);
  39. return NULL;
  40. }
  41. tcti_ctx = (TSS2_TCTI_CONTEXT *) calloc(1, size);
  42. if (tcti_ctx == NULL) {
  43. fprintf(stderr,
  44. "Allocation for device TCTI context failed: %s\n",
  45. strerror(errno));
  46. return NULL;
  47. }
  48. rc = Tss2_Tcti_Device_Init(tcti_ctx, &size, device_path);
  49. if (rc != TSS2_RC_SUCCESS) {
  50. fprintf(stderr, "Failed to initialize device TCTI context: 0x%x\n", rc);
  51. free(tcti_ctx);
  52. return NULL;
  53. }
  54. return tcti_ctx;
  55. }
  56. #endif /* TCTI_DEVICE */
  57. #ifdef TCTI_MSSIM
  58. /*
  59. * Initialize a socket TCTI instance using the provided options structure.
  60. * The hostname and port are the only configuration options used.
  61. * The caller is returned a TCTI context structure that is allocated by this
  62. * function. This structure must be freed by the caller.
  63. */
  64. TSS2_TCTI_CONTEXT *
  65. tcti_socket_init(char const *host, uint16_t port)
  66. {
  67. size_t size;
  68. TSS2_RC rc;
  69. TSS2_TCTI_CONTEXT *tcti_ctx;
  70. char conf_str[TCTI_MSSIM_CONF_MAX] = { 0 };
  71. snprintf(conf_str, TCTI_MSSIM_CONF_MAX, "host=%s,port=%" PRIu16, host, port);
  72. rc = Tss2_Tcti_Mssim_Init(NULL, &size, conf_str);
  73. if (rc != TSS2_RC_SUCCESS) {
  74. fprintf(stderr, "Faled to get allocation size for tcti context: "
  75. "0x%x\n", rc);
  76. return NULL;
  77. }
  78. tcti_ctx = (TSS2_TCTI_CONTEXT *) calloc(1, size);
  79. if (tcti_ctx == NULL) {
  80. fprintf(stderr, "Allocation for tcti context failed: %s\n",
  81. strerror(errno));
  82. return NULL;
  83. }
  84. rc = Tss2_Tcti_Mssim_Init(tcti_ctx, &size, conf_str);
  85. if (rc != TSS2_RC_SUCCESS) {
  86. fprintf(stderr, "Failed to initialize tcti context: 0x%x\n", rc);
  87. free(tcti_ctx);
  88. return NULL;
  89. }
  90. return tcti_ctx;
  91. }
  92. #endif /* TCTI_MSSIM */
  93. #ifdef TCTI_SWTPM
  94. /*
  95. * Initialize a socket TCTI instance using the provided options structure.
  96. * The hostname and port are the only configuration options used.
  97. * The caller is returned a TCTI context structure that is allocated by this
  98. * function. This structure must be freed by the caller.
  99. */
  100. TSS2_TCTI_CONTEXT *
  101. tcti_swtpm_init(char const *host, uint16_t port)
  102. {
  103. size_t size;
  104. TSS2_RC rc;
  105. TSS2_TCTI_CONTEXT *tcti_ctx;
  106. char conf_str[TCTI_SWTPM_CONF_MAX] = { 0 };
  107. snprintf(conf_str, TCTI_SWTPM_CONF_MAX, "host=%s,port=%" PRIu16, host, port);
  108. rc = Tss2_Tcti_Swtpm_Init(NULL, &size, conf_str);
  109. if (rc != TSS2_RC_SUCCESS) {
  110. fprintf(stderr, "Faled to get allocation size for tcti context: "
  111. "0x%x\n", rc);
  112. return NULL;
  113. }
  114. tcti_ctx = (TSS2_TCTI_CONTEXT *) calloc(1, size);
  115. if (tcti_ctx == NULL) {
  116. fprintf(stderr, "Allocation for tcti context failed: %s\n",
  117. strerror(errno));
  118. return NULL;
  119. }
  120. rc = Tss2_Tcti_Swtpm_Init(tcti_ctx, &size, conf_str);
  121. if (rc != TSS2_RC_SUCCESS) {
  122. fprintf(stderr, "Failed to initialize tcti context: 0x%x\n", rc);
  123. free(tcti_ctx);
  124. return NULL;
  125. }
  126. return tcti_ctx;
  127. }
  128. #endif /* TCTI_SWTPM */
  129. #ifdef TCTI_FUZZING
  130. /*
  131. * Initialize a fuzzing TCTI instance using the provided options structure.
  132. * The fuzzing_lengths.log file is the only configuration option used.
  133. * The caller is returned a TCTI context structure that is allocated by this
  134. * function. This structure must be freed by the caller.
  135. */
  136. TSS2_TCTI_CONTEXT *
  137. tcti_fuzzing_init()
  138. {
  139. size_t size;
  140. TSS2_RC rc;
  141. TSS2_TCTI_CONTEXT *tcti_ctx;
  142. rc = Tss2_Tcti_Fuzzing_Init(NULL, &size, NULL);
  143. if (rc != TSS2_RC_SUCCESS) {
  144. fprintf(stderr, "Faled to get allocation size for tcti context: "
  145. "0x%x\n", rc);
  146. return NULL;
  147. }
  148. tcti_ctx = (TSS2_TCTI_CONTEXT *) calloc(1, size);
  149. if (tcti_ctx == NULL) {
  150. fprintf(stderr, "Allocation for tcti context failed: %s\n",
  151. strerror(errno));
  152. return NULL;
  153. }
  154. rc = Tss2_Tcti_Fuzzing_Init(tcti_ctx, &size, NULL);
  155. if (rc != TSS2_RC_SUCCESS) {
  156. fprintf(stderr, "Failed to initialize tcti context: 0x%x\n", rc);
  157. free(tcti_ctx);
  158. return NULL;
  159. }
  160. return tcti_ctx;
  161. }
  162. #endif /* TCTI_FUZZING */
  163. /*
  164. * Initialize a SYS context using the TCTI context provided by the caller.
  165. * This function allocates memory for the SYS context and returns it to the
  166. * caller. This memory must be freed by the caller.
  167. */
  168. TSS2_SYS_CONTEXT *
  169. sys_init_from_tcti_ctx(TSS2_TCTI_CONTEXT * tcti_ctx)
  170. {
  171. TSS2_SYS_CONTEXT *sys_ctx;
  172. TSS2_RC rc;
  173. size_t size;
  174. TSS2_ABI_VERSION abi_version = {
  175. .tssCreator = 1,
  176. .tssFamily = 2,
  177. .tssLevel = 1,
  178. .tssVersion = 108,
  179. };
  180. size = Tss2_Sys_GetContextSize(0);
  181. sys_ctx = (TSS2_SYS_CONTEXT *) calloc(1, size);
  182. if (sys_ctx == NULL) {
  183. fprintf(stderr,
  184. "Failed to allocate 0x%zx bytes for the SYS context\n", size);
  185. return NULL;
  186. }
  187. rc = Tss2_Sys_Initialize(sys_ctx, size, tcti_ctx, &abi_version);
  188. if (rc != TSS2_RC_SUCCESS) {
  189. fprintf(stderr, "Failed to initialize SYS context: 0x%x\n", rc);
  190. free(sys_ctx);
  191. return NULL;
  192. }
  193. return sys_ctx;
  194. }
  195. /*
  196. * Initialize a SYS context to use a socket TCTI. Get configuration data from
  197. * the provided structure.
  198. */
  199. TSS2_SYS_CONTEXT *
  200. sys_init_from_opts(test_opts_t * options)
  201. {
  202. TSS2_TCTI_CONTEXT *tcti_ctx;
  203. TSS2_SYS_CONTEXT *sys_ctx;
  204. tcti_ctx = tcti_init_from_opts(options);
  205. if (tcti_ctx == NULL)
  206. return NULL;
  207. sys_ctx = sys_init_from_tcti_ctx(tcti_ctx);
  208. if (sys_ctx == NULL)
  209. return NULL;
  210. return sys_ctx;
  211. }
  212. /*
  213. * Initialize a TSS2_TCTI_CONTEXT using whatever TCTI data is in the options
  214. * structure. This is a mechanism that allows the calling application to be
  215. * mostly ignorant of which TCTI they're creating / initializing.
  216. */
  217. TSS2_TCTI_CONTEXT *
  218. tcti_init_from_opts(test_opts_t * options)
  219. {
  220. switch (options->tcti_type) {
  221. #ifdef TCTI_DEVICE
  222. case DEVICE_TCTI:
  223. return tcti_device_init(options->device_file);
  224. #endif /* TCTI_DEVICE */
  225. #ifdef TCTI_MSSIM
  226. case SOCKET_TCTI:
  227. return tcti_socket_init(options->socket_address, options->socket_port);
  228. #endif /* TCTI_MSSIM */
  229. #ifdef TCTI_SWTPM
  230. case SWTPM_TCTI:
  231. return tcti_swtpm_init(options->socket_address, options->socket_port);
  232. #endif /* TCTI_SWTPM */
  233. #ifdef TCTI_FUZZING
  234. case FUZZING_TCTI:
  235. return tcti_fuzzing_init();
  236. #endif /* TCTI_FUZZING */
  237. default:
  238. return NULL;
  239. }
  240. }
  241. /*
  242. * Teardown / Finalize TCTI context and free memory.
  243. */
  244. void
  245. tcti_teardown(TSS2_TCTI_CONTEXT * tcti_context)
  246. {
  247. if (tcti_context) {
  248. Tss2_Tcti_Finalize(tcti_context);
  249. free(tcti_context);
  250. }
  251. }
  252. /*
  253. * Teardown and free the resources associated with a SYS context structure.
  254. */
  255. void
  256. sys_teardown(TSS2_SYS_CONTEXT * sys_context)
  257. {
  258. Tss2_Sys_Finalize(sys_context);
  259. free(sys_context);
  260. }
  261. /*
  262. * Teardown and free the resources associated with a SYS context structure.
  263. * This includes tearing down the TCTI as well.
  264. */
  265. void
  266. sys_teardown_full(TSS2_SYS_CONTEXT * sys_context)
  267. {
  268. TSS2_TCTI_CONTEXT *tcti_context = NULL;
  269. TSS2_RC rc;
  270. rc = Tss2_Sys_GetTctiContext(sys_context, &tcti_context);
  271. if (rc != TSS2_RC_SUCCESS)
  272. return;
  273. sys_teardown(sys_context);
  274. tcti_teardown(tcti_context);
  275. }