fapi-key-create-policy-nv-counter-sign.int.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* SPDX-License-Identifier: BSD-2-Clause */
  2. /*******************************************************************************
  3. * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
  4. * All rights reserved.
  5. *******************************************************************************/
  6. #ifdef HAVE_CONFIG_H
  7. #include <config.h>
  8. #endif
  9. #include <stdlib.h>
  10. #include <stdio.h>
  11. #include <errno.h>
  12. #include <fcntl.h>
  13. #include <unistd.h>
  14. #include <string.h>
  15. #include "tss2_fapi.h"
  16. #define LOGMODULE test
  17. #include "util/log.h"
  18. #include "util/aux_util.h"
  19. #include "test-fapi.h"
  20. #define SIGN_TEMPLATE "sign,noDa"
  21. #define PASSWORD NULL
  22. #define NV_SIZE 4
  23. /** Test the FAPI functions for NV writing and key usage with PolicyNV (counter)
  24. *
  25. * Tested FAPI commands:
  26. * - Fapi_Provision()
  27. * - Fapi_CreateKey()
  28. * - Fapi_NvWrite()
  29. * - Fapi_Import()
  30. * - Fapi_Sign()
  31. * - Fapi_Delete()
  32. *
  33. * Tested Policies:
  34. * - PolicyNv
  35. *
  36. * @param[in,out] context The FAPI_CONTEXT.
  37. * @retval EXIT_FAILURE
  38. * @retval EXIT_SUCCESS
  39. */
  40. int
  41. test_fapi_key_create_policy_nv_sign(FAPI_CONTEXT *context)
  42. {
  43. TSS2_RC r;
  44. char *policy_name = "/policy/pol_nv";
  45. char *policy_file = TOP_SOURCEDIR "/test/data/fapi/policy/pol_nv_counter.json";;
  46. FILE *stream = NULL;
  47. char *json_policy = NULL;
  48. uint8_t *signature = NULL;
  49. char *publicKey = NULL;
  50. char *certificate = NULL;
  51. long policy_size;
  52. char *nvPathOrdinary = "/nv/Owner/myNV";
  53. r = Fapi_Provision(context, NULL, NULL, NULL);
  54. goto_if_error(r, "Error Fapi_Provision", error);
  55. r = Fapi_CreateNv(context, nvPathOrdinary, "noda,counter", 8, "", "");
  56. goto_if_error(r, "Error Fapi_CreateNv", error);
  57. r = Fapi_NvIncrement(context, nvPathOrdinary);
  58. goto_if_error(r, "Error Fapi_NvWrite", error);
  59. stream = fopen(policy_file, "r");
  60. if (!stream) {
  61. LOG_ERROR("File %s does not exist", policy_file);
  62. goto error;
  63. }
  64. fseek(stream, 0L, SEEK_END);
  65. policy_size = ftell(stream);
  66. fclose(stream);
  67. json_policy = malloc(policy_size + 1);
  68. goto_if_null(json_policy,
  69. "Could not allocate memory for the JSON policy",
  70. TSS2_FAPI_RC_MEMORY, error);
  71. stream = fopen(policy_file, "r");
  72. ssize_t ret = read(fileno(stream), json_policy, policy_size);
  73. if (ret != policy_size) {
  74. LOG_ERROR("IO error %s.", policy_file);
  75. goto error;
  76. }
  77. json_policy[policy_size] = '\0';
  78. r = Fapi_Import(context, policy_name, json_policy);
  79. goto_if_error(r, "Error Fapi_Import", error);
  80. r = Fapi_CreateKey(context, "HS/SRK/mySignKey", SIGN_TEMPLATE,
  81. policy_name, PASSWORD);
  82. goto_if_error(r, "Error Fapi_CreateKey", error);
  83. r = Fapi_SetCertificate(context, "HS/SRK/mySignKey", "-----BEGIN "\
  84. "CERTIFICATE-----[...]-----END CERTIFICATE-----");
  85. goto_if_error(r, "Error Fapi_CreateKey", error);
  86. size_t signatureSize = 0;
  87. TPM2B_DIGEST digest = {
  88. .size = 20,
  89. .buffer = {
  90. 0x67, 0x68, 0x03, 0x3e, 0x21, 0x64, 0x68, 0x24, 0x7b, 0xd0,
  91. 0x31, 0xa0, 0xa2, 0xd9, 0x87, 0x6d, 0x79, 0x81, 0x8f, 0x8f
  92. }
  93. };
  94. r = Fapi_Sign(context, "HS/SRK/mySignKey", NULL,
  95. &digest.buffer[0], digest.size, &signature, &signatureSize,
  96. &publicKey, &certificate);
  97. goto_if_error(r, "Error Fapi_Sign", error);
  98. ASSERT(signature != NULL);
  99. ASSERT(publicKey != NULL);
  100. ASSERT(certificate != NULL);
  101. ASSERT(strstr(publicKey, "BEGIN PUBLIC KEY"));
  102. ASSERT(strstr(certificate, "BEGIN CERTIFICATE"));
  103. r = Fapi_Delete(context, nvPathOrdinary);
  104. goto_if_error(r, "Error Fapi_NV_Undefine", error);
  105. r = Fapi_Delete(context, "/");
  106. goto_if_error(r, "Error Fapi_Delete", error);
  107. SAFE_FREE(signature);
  108. SAFE_FREE(publicKey);
  109. SAFE_FREE(certificate);
  110. SAFE_FREE(json_policy);
  111. return EXIT_SUCCESS;
  112. error:
  113. Fapi_Delete(context, "/");
  114. SAFE_FREE(signature);
  115. SAFE_FREE(publicKey);
  116. SAFE_FREE(certificate);
  117. SAFE_FREE(json_policy);
  118. return EXIT_FAILURE;
  119. }
  120. int
  121. test_invoke_fapi(FAPI_CONTEXT *fapi_context)
  122. {
  123. return test_fapi_key_create_policy_nv_sign(fapi_context);
  124. }