sys-util.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /* SPDX-License-Identifier: BSD-2-Clause */
  2. /***********************************************************************
  3. * Copyright (c) 2017-2018, Intel Corporation
  4. *
  5. * All rights reserved.
  6. ***********************************************************************/
  7. #ifndef TEST_INTEGRATION_SYS_UTIL_H
  8. #define TEST_INTEGRATION_SYS_UTIL_H
  9. #include "tss2_tpm2_types.h"
  10. #include "tss2_sys.h"
  11. #include "util/tpm2b.h"
  12. /*
  13. * This macro is like the GNU TEMP_FAILURE_RETRY macro for the
  14. * TPM2_RC_RETRY response code.
  15. */
  16. #define TSS2_RETRY_EXP(expression) \
  17. ({ \
  18. TSS2_RC __result = 0; \
  19. do { \
  20. __result = (expression); \
  21. } while ((__result & 0x0000ffff) == TPM2_RC_RETRY); \
  22. __result; \
  23. })
  24. /*
  25. * tpm2b default initializers, these set the size to the max for the default
  26. * structure and zero's the data area.
  27. */
  28. #define TPM2B_SIZE(type) (sizeof (type) - 2)
  29. #define TPM2B_NAMED_INIT(type, field) \
  30. { \
  31. .size = TPM2B_SIZE (type), \
  32. .field = { 0 } \
  33. }
  34. #define TPM2B_DIGEST_INIT TPM2B_NAMED_INIT (TPM2B_DIGEST, buffer)
  35. #define TPM2B_NAME_INIT TPM2B_NAMED_INIT (TPM2B_NAME, name)
  36. #define TPM2B_PRIVATE_INIT TPM2B_NAMED_INIT (TPM2B_PRIVATE, buffer)
  37. #define TPM2B_MAX_BUFFER_INIT { .size = TPM2_MAX_DIGEST_BUFFER }
  38. #define TPM2B_IV_INIT { .size = TPM2_MAX_SYM_BLOCK_SIZE }
  39. #define BUFFER_SIZE(type, field) (sizeof((((type *)NULL)->t.field)))
  40. #define TPM2B_TYPE_INIT(type, field) { .size = BUFFER_SIZE(type, field), }
  41. /*
  42. * Use te provide SYS context to create & load a primary key. The key will
  43. * be a 2048 bit (restricted decryption) RSA key. The associated symmetric
  44. * key is a 128 bit AES (CFB mode) key.
  45. */
  46. TSS2_RC
  47. create_primary_rsa_2048_aes_128_cfb (
  48. TSS2_SYS_CONTEXT *sys_context,
  49. TPM2_HANDLE *handle);
  50. /*
  51. * This function creates a 128 bit symmetric AES key in cbc mode. This key will
  52. * be created as the child of the parameter 'handle_parent'. The handle for the
  53. * newly created AND loaded key is returned in the parameter 'handle'.
  54. */
  55. TSS2_RC
  56. create_aes_128_cfb (
  57. TSS2_SYS_CONTEXT *sys_context,
  58. TPM2_HANDLE handle_parent,
  59. TPM2_HANDLE *handle);
  60. /*
  61. * This function creates a RSA key of KEYEDHASH type.
  62. */
  63. TSS2_RC
  64. create_keyedhash_key (
  65. TSS2_SYS_CONTEXT *sys_context,
  66. TPM2_HANDLE handle_parent,
  67. TPM2_HANDLE *handle);
  68. /*
  69. * This function will decrypt or encrypt the 'data_in' buffer and return the
  70. * results in the 'data_out' parameter. Decrypt or encrypt is selected using
  71. * the 'decrypt' TPMI_YES_NO parameter. The key used for the operation is
  72. * provided in the 'handle' parameter.
  73. * Under the covers this function uses an IV of all zeros and so it can not
  74. * be used for streaming. It can only be used to encrypt or decrypt a single
  75. * buffer. This function uses tpm to perform encryption.
  76. */
  77. TSS2_RC
  78. tpm_encrypt_decrypt_cfb (
  79. TSS2_SYS_CONTEXT *sys_context,
  80. TPMI_DH_OBJECT handle,
  81. TPMI_YES_NO decrypt,
  82. TPM2B_MAX_BUFFER *data_in,
  83. TPM2B_MAX_BUFFER *data_out);
  84. /*
  85. * This is a convenience wrapper around the encrypt_decrypt_cfb function.
  86. * This function uses tpm to perform encryption.
  87. */
  88. TSS2_RC
  89. tpm_encrypt_cfb (
  90. TSS2_SYS_CONTEXT *sys_context,
  91. TPMI_DH_OBJECT handle,
  92. TPM2B_MAX_BUFFER *data_in,
  93. TPM2B_MAX_BUFFER *data_out);
  94. /*
  95. * This is a convenience wrapper around the encrypt_decrypt_cfb function.
  96. * This function uses tpm to perform encryption.
  97. */
  98. TSS2_RC
  99. tpm_decrypt_cfb (
  100. TSS2_SYS_CONTEXT *sys_context,
  101. TPMI_DH_OBJECT handle,
  102. TPM2B_MAX_BUFFER *data_in,
  103. TPM2B_MAX_BUFFER *data_out);
  104. /*
  105. * This function is identical to the encrypt_decrypt_cfb function but under
  106. * the covers it uses the EncryptDecrypt2 function instead of EncryptDecrypt.
  107. * This function uses tpm to perform encryption.
  108. */
  109. TSS2_RC
  110. tpm_encrypt_decrypt_2_cfb (
  111. TSS2_SYS_CONTEXT *sys_context,
  112. TPMI_DH_OBJECT handle,
  113. TPMI_YES_NO decrypt,
  114. TPM2B_MAX_BUFFER *data_in,
  115. TPM2B_MAX_BUFFER *data_out);
  116. /*
  117. * This is a convenience wrapper around the encrypt_decrypt_2_cfb function.
  118. * This function uses tpm to perform encryption.
  119. */
  120. TSS2_RC
  121. tpm_encrypt_2_cfb (
  122. TSS2_SYS_CONTEXT *sys_context,
  123. TPMI_DH_OBJECT handle,
  124. TPM2B_MAX_BUFFER *data_in,
  125. TPM2B_MAX_BUFFER *data_out);
  126. /*
  127. * This is a convenience wrapper around the encrypt_decrypt_2_cfb function.
  128. * This function uses tpm to perform encryption.
  129. */
  130. TSS2_RC
  131. tpm_decrypt_2_cfb (
  132. TSS2_SYS_CONTEXT *sys_context,
  133. TPMI_DH_OBJECT handle,
  134. TPM2B_MAX_BUFFER *data_in,
  135. TPM2B_MAX_BUFFER *data_out);
  136. /*
  137. * This helper function uses software to perform decryption.
  138. */
  139. TSS2_RC
  140. decrypt_cfb (
  141. TPM2B_MAX_BUFFER *data_out,
  142. TPM2B_MAX_BUFFER *data_in,
  143. TPM2B_MAX_BUFFER *key,
  144. TPM2B_IV *iv);
  145. /*
  146. * This helper function uses software to perform encryption.
  147. */
  148. TSS2_RC
  149. encrypt_cfb (
  150. TPM2B_MAX_BUFFER *data_out,
  151. TPM2B_MAX_BUFFER *data_in,
  152. TPM2B_MAX_BUFFER *key,
  153. TPM2B_IV *iv);
  154. /*
  155. * This is a helper function for digest calculation.
  156. * alg can be TPM2_ALG_SHA1, TPM2_ALG_SHA256, TPM2_ALG_SHA384, TPM2_ALG_SM3_256,
  157. * and TPM2_ALG_SHA512
  158. */
  159. TSS2_RC
  160. hash (
  161. TPM2_ALG_ID alg,
  162. const void *data,
  163. int size,
  164. TPM2B_DIGEST *out);
  165. /*
  166. * This is a helper function for calculating HMAC.
  167. * alg can be TPM2_ALG_SHA1, TPM2_ALG_SHA256, TPM2_ALG_SHA384, TPM2_ALG_SM3_256,
  168. * and TPM2_ALG_SHA512
  169. */
  170. TSS2_RC
  171. hmac(
  172. TPM2_ALG_ID alg,
  173. const void *key,
  174. int key_len,
  175. TPM2B_DIGEST **buffer_list,
  176. TPM2B_DIGEST *out);
  177. /*
  178. * Returns digest size for a give hash alg
  179. */
  180. UINT16
  181. GetDigestSize(TPM2_ALG_ID hash);
  182. TSS2_RC
  183. CompareSizedByteBuffer(
  184. TPM2B *buffer1,
  185. TPM2B *buffer2);
  186. TSS2_RC
  187. ConcatSizedByteBuffer(
  188. TPM2B_MAX_BUFFER *result,
  189. TPM2B *buf);
  190. void
  191. CatSizedByteBuffer(
  192. TPM2B *dest,
  193. TPM2B *src);
  194. UINT16
  195. CopySizedByteBuffer(
  196. TPM2B *dest,
  197. const TPM2B *src);
  198. TSS2_RC
  199. DefineNvIndex (
  200. TSS2_SYS_CONTEXT *sys_ctx,
  201. TPMI_RH_PROVISION authHandle,
  202. TPM2B_AUTH *auth,
  203. const TPM2B_DIGEST *authPolicy,
  204. TPMI_RH_NV_INDEX nvIndex,
  205. TPMI_ALG_HASH nameAlg,
  206. TPMA_NV attributes,
  207. UINT16 size);
  208. #endif /* TEST_INTEGRATION_SYS_UTIL_H */