tpm.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /*
  2. * Copyright (c) 2013 The Chromium OS Authors.
  3. * Coypright (c) 2013 Guntermann & Drunck GmbH
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __TPM_H
  8. #define __TPM_H
  9. #include <tis.h>
  10. /*
  11. * Here is a partial implementation of TPM commands. Please consult TCG Main
  12. * Specification for definitions of TPM commands.
  13. */
  14. enum tpm_startup_type {
  15. TPM_ST_CLEAR = 0x0001,
  16. TPM_ST_STATE = 0x0002,
  17. TPM_ST_DEACTIVATED = 0x0003,
  18. };
  19. enum tpm_physical_presence {
  20. TPM_PHYSICAL_PRESENCE_HW_DISABLE = 0x0200,
  21. TPM_PHYSICAL_PRESENCE_CMD_DISABLE = 0x0100,
  22. TPM_PHYSICAL_PRESENCE_LIFETIME_LOCK = 0x0080,
  23. TPM_PHYSICAL_PRESENCE_HW_ENABLE = 0x0040,
  24. TPM_PHYSICAL_PRESENCE_CMD_ENABLE = 0x0020,
  25. TPM_PHYSICAL_PRESENCE_NOTPRESENT = 0x0010,
  26. TPM_PHYSICAL_PRESENCE_PRESENT = 0x0008,
  27. TPM_PHYSICAL_PRESENCE_LOCK = 0x0004,
  28. };
  29. enum tpm_nv_index {
  30. TPM_NV_INDEX_LOCK = 0xffffffff,
  31. TPM_NV_INDEX_0 = 0x00000000,
  32. TPM_NV_INDEX_DIR = 0x10000001,
  33. };
  34. /**
  35. * TPM return codes as defined in the TCG Main specification
  36. * (TPM Main Part 2 Structures; Specification version 1.2)
  37. */
  38. enum tpm_return_code {
  39. TPM_BASE = 0x00000000,
  40. TPM_NON_FATAL = 0x00000800,
  41. TPM_SUCCESS = TPM_BASE,
  42. /* TPM-defined fatal error codes */
  43. TPM_AUTHFAIL = TPM_BASE + 1,
  44. TPM_BADINDEX = TPM_BASE + 2,
  45. TPM_BAD_PARAMETER = TPM_BASE + 3,
  46. TPM_AUDITFAILURE = TPM_BASE + 4,
  47. TPM_CLEAR_DISABLED = TPM_BASE + 5,
  48. TPM_DEACTIVATED = TPM_BASE + 6,
  49. TPM_DISABLED = TPM_BASE + 7,
  50. TPM_DISABLED_CMD = TPM_BASE + 8,
  51. TPM_FAIL = TPM_BASE + 9,
  52. TPM_BAD_ORDINAL = TPM_BASE + 10,
  53. TPM_INSTALL_DISABLED = TPM_BASE + 11,
  54. TPM_INVALID_KEYHANDLE = TPM_BASE + 12,
  55. TPM_KEYNOTFOUND = TPM_BASE + 13,
  56. TPM_INAPPROPRIATE_ENC = TPM_BASE + 14,
  57. TPM_MIGRATE_FAIL = TPM_BASE + 15,
  58. TPM_INVALID_PCR_INFO = TPM_BASE + 16,
  59. TPM_NOSPACE = TPM_BASE + 17,
  60. TPM_NOSRK = TPM_BASE + 18,
  61. TPM_NOTSEALED_BLOB = TPM_BASE + 19,
  62. TPM_OWNER_SET = TPM_BASE + 20,
  63. TPM_RESOURCES = TPM_BASE + 21,
  64. TPM_SHORTRANDOM = TPM_BASE + 22,
  65. TPM_SIZE = TPM_BASE + 23,
  66. TPM_WRONGPCRVAL = TPM_BASE + 24,
  67. TPM_BAD_PARAM_SIZE = TPM_BASE + 25,
  68. TPM_SHA_THREAD = TPM_BASE + 26,
  69. TPM_SHA_ERROR = TPM_BASE + 27,
  70. TPM_FAILEDSELFTEST = TPM_BASE + 28,
  71. TPM_AUTH2FAIL = TPM_BASE + 29,
  72. TPM_BADTAG = TPM_BASE + 30,
  73. TPM_IOERROR = TPM_BASE + 31,
  74. TPM_ENCRYPT_ERROR = TPM_BASE + 32,
  75. TPM_DECRYPT_ERROR = TPM_BASE + 33,
  76. TPM_INVALID_AUTHHANDLE = TPM_BASE + 34,
  77. TPM_NO_ENDORSEMENT = TPM_BASE + 35,
  78. TPM_INVALID_KEYUSAGE = TPM_BASE + 36,
  79. TPM_WRONG_ENTITYTYPE = TPM_BASE + 37,
  80. TPM_INVALID_POSTINIT = TPM_BASE + 38,
  81. TPM_INAPPROPRIATE_SIG = TPM_BASE + 39,
  82. TPM_BAD_KEY_PROPERTY = TPM_BASE + 40,
  83. TPM_BAD_MIGRATION = TPM_BASE + 41,
  84. TPM_BAD_SCHEME = TPM_BASE + 42,
  85. TPM_BAD_DATASIZE = TPM_BASE + 43,
  86. TPM_BAD_MODE = TPM_BASE + 44,
  87. TPM_BAD_PRESENCE = TPM_BASE + 45,
  88. TPM_BAD_VERSION = TPM_BASE + 46,
  89. TPM_NO_WRAP_TRANSPORT = TPM_BASE + 47,
  90. TPM_AUDITFAIL_UNSUCCESSFUL = TPM_BASE + 48,
  91. TPM_AUDITFAIL_SUCCESSFUL = TPM_BASE + 49,
  92. TPM_NOTRESETABLE = TPM_BASE + 50,
  93. TPM_NOTLOCAL = TPM_BASE + 51,
  94. TPM_BAD_TYPE = TPM_BASE + 52,
  95. TPM_INVALID_RESOURCE = TPM_BASE + 53,
  96. TPM_NOTFIPS = TPM_BASE + 54,
  97. TPM_INVALID_FAMILY = TPM_BASE + 55,
  98. TPM_NO_NV_PERMISSION = TPM_BASE + 56,
  99. TPM_REQUIRES_SIGN = TPM_BASE + 57,
  100. TPM_KEY_NOTSUPPORTED = TPM_BASE + 58,
  101. TPM_AUTH_CONFLICT = TPM_BASE + 59,
  102. TPM_AREA_LOCKED = TPM_BASE + 60,
  103. TPM_BAD_LOCALITY = TPM_BASE + 61,
  104. TPM_READ_ONLY = TPM_BASE + 62,
  105. TPM_PER_NOWRITE = TPM_BASE + 63,
  106. TPM_FAMILY_COUNT = TPM_BASE + 64,
  107. TPM_WRITE_LOCKED = TPM_BASE + 65,
  108. TPM_BAD_ATTRIBUTES = TPM_BASE + 66,
  109. TPM_INVALID_STRUCTURE = TPM_BASE + 67,
  110. TPM_KEY_OWNER_CONTROL = TPM_BASE + 68,
  111. TPM_BAD_COUNTER = TPM_BASE + 69,
  112. TPM_NOT_FULLWRITE = TPM_BASE + 70,
  113. TPM_CONTEXT_GAP = TPM_BASE + 71,
  114. TPM_MAXNVWRITES = TPM_BASE + 72,
  115. TPM_NOOPERATOR = TPM_BASE + 73,
  116. TPM_RESOURCEMISSING = TPM_BASE + 74,
  117. TPM_DELEGATE_LOCK = TPM_BASE + 75,
  118. TPM_DELEGATE_FAMILY = TPM_BASE + 76,
  119. TPM_DELEGATE_ADMIN = TPM_BASE + 77,
  120. TPM_TRANSPORT_NOTEXCLUSIVE = TPM_BASE + 78,
  121. TPM_OWNER_CONTROL = TPM_BASE + 79,
  122. TPM_DAA_RESOURCES = TPM_BASE + 80,
  123. TPM_DAA_INPUT_DATA0 = TPM_BASE + 81,
  124. TPM_DAA_INPUT_DATA1 = TPM_BASE + 82,
  125. TPM_DAA_ISSUER_SETTINGS = TPM_BASE + 83,
  126. TPM_DAA_TPM_SETTINGS = TPM_BASE + 84,
  127. TPM_DAA_STAGE = TPM_BASE + 85,
  128. TPM_DAA_ISSUER_VALIDITY = TPM_BASE + 86,
  129. TPM_DAA_WRONG_W = TPM_BASE + 87,
  130. TPM_BAD_HANDLE = TPM_BASE + 88,
  131. TPM_BAD_DELEGATE = TPM_BASE + 89,
  132. TPM_BADCONTEXT = TPM_BASE + 90,
  133. TPM_TOOMANYCONTEXTS = TPM_BASE + 91,
  134. TPM_MA_TICKET_SIGNATURE = TPM_BASE + 92,
  135. TPM_MA_DESTINATION = TPM_BASE + 93,
  136. TPM_MA_SOURCE = TPM_BASE + 94,
  137. TPM_MA_AUTHORITY = TPM_BASE + 95,
  138. TPM_PERMANENTEK = TPM_BASE + 97,
  139. TPM_BAD_SIGNATURE = TPM_BASE + 98,
  140. TPM_NOCONTEXTSPACE = TPM_BASE + 99,
  141. /* TPM-defined non-fatal errors */
  142. TPM_RETRY = TPM_BASE + TPM_NON_FATAL,
  143. TPM_NEEDS_SELFTEST = TPM_BASE + TPM_NON_FATAL + 1,
  144. TPM_DOING_SELFTEST = TPM_BASE + TPM_NON_FATAL + 2,
  145. TPM_DEFEND_LOCK_RUNNING = TPM_BASE + TPM_NON_FATAL + 3,
  146. };
  147. /**
  148. * Initialize TPM device. It must be called before any TPM commands.
  149. *
  150. * @return 0 on success, non-0 on error.
  151. */
  152. uint32_t tpm_init(void);
  153. /**
  154. * Issue a TPM_Startup command.
  155. *
  156. * @param mode TPM startup mode
  157. * @return return code of the operation
  158. */
  159. uint32_t tpm_startup(enum tpm_startup_type mode);
  160. /**
  161. * Issue a TPM_SelfTestFull command.
  162. *
  163. * @return return code of the operation
  164. */
  165. uint32_t tpm_self_test_full(void);
  166. /**
  167. * Issue a TPM_ContinueSelfTest command.
  168. *
  169. * @return return code of the operation
  170. */
  171. uint32_t tpm_continue_self_test(void);
  172. /**
  173. * Issue a TPM_NV_DefineSpace command. The implementation is limited
  174. * to specify TPM_NV_ATTRIBUTES and size of the area. The area index
  175. * could be one of the special value listed in enum tpm_nv_index.
  176. *
  177. * @param index index of the area
  178. * @param perm TPM_NV_ATTRIBUTES of the area
  179. * @param size size of the area
  180. * @return return code of the operation
  181. */
  182. uint32_t tpm_nv_define_space(uint32_t index, uint32_t perm, uint32_t size);
  183. /**
  184. * Issue a TPM_NV_ReadValue command. This implementation is limited
  185. * to read the area from offset 0. The area index could be one of
  186. * the special value listed in enum tpm_nv_index.
  187. *
  188. * @param index index of the area
  189. * @param data output buffer of the area contents
  190. * @param count size of output buffer
  191. * @return return code of the operation
  192. */
  193. uint32_t tpm_nv_read_value(uint32_t index, void *data, uint32_t count);
  194. /**
  195. * Issue a TPM_NV_WriteValue command. This implementation is limited
  196. * to write the area from offset 0. The area index could be one of
  197. * the special value listed in enum tpm_nv_index.
  198. *
  199. * @param index index of the area
  200. * @param data input buffer to be wrote to the area
  201. * @param length length of data bytes of input buffer
  202. * @return return code of the operation
  203. */
  204. uint32_t tpm_nv_write_value(uint32_t index, const void *data, uint32_t length);
  205. /**
  206. * Issue a TPM_Extend command.
  207. *
  208. * @param index index of the PCR
  209. * @param in_digest 160-bit value representing the event to be
  210. * recorded
  211. * @param out_digest 160-bit PCR value after execution of the
  212. * command
  213. * @return return code of the operation
  214. */
  215. uint32_t tpm_extend(uint32_t index, const void *in_digest, void *out_digest);
  216. /**
  217. * Issue a TPM_PCRRead command.
  218. *
  219. * @param index index of the PCR
  220. * @param data output buffer for contents of the named PCR
  221. * @param count size of output buffer
  222. * @return return code of the operation
  223. */
  224. uint32_t tpm_pcr_read(uint32_t index, void *data, size_t count);
  225. /**
  226. * Issue a TSC_PhysicalPresence command. TPM physical presence flag
  227. * is bit-wise OR'ed of flags listed in enum tpm_physical_presence.
  228. *
  229. * @param presence TPM physical presence flag
  230. * @return return code of the operation
  231. */
  232. uint32_t tpm_tsc_physical_presence(uint16_t presence);
  233. /**
  234. * Issue a TPM_ReadPubek command.
  235. *
  236. * @param data output buffer for the public endorsement key
  237. * @param count size of ouput buffer
  238. * @return return code of the operation
  239. */
  240. uint32_t tpm_read_pubek(void *data, size_t count);
  241. /**
  242. * Issue a TPM_ForceClear command.
  243. *
  244. * @return return code of the operation
  245. */
  246. uint32_t tpm_force_clear(void);
  247. /**
  248. * Issue a TPM_PhysicalEnable command.
  249. *
  250. * @return return code of the operation
  251. */
  252. uint32_t tpm_physical_enable(void);
  253. /**
  254. * Issue a TPM_PhysicalDisable command.
  255. *
  256. * @return return code of the operation
  257. */
  258. uint32_t tpm_physical_disable(void);
  259. /**
  260. * Issue a TPM_PhysicalSetDeactivated command.
  261. *
  262. * @param state boolean state of the deactivated flag
  263. * @return return code of the operation
  264. */
  265. uint32_t tpm_physical_set_deactivated(uint8_t state);
  266. /**
  267. * Issue a TPM_GetCapability command. This implementation is limited
  268. * to query sub_cap index that is 4-byte wide.
  269. *
  270. * @param cap_area partition of capabilities
  271. * @param sub_cap further definition of capability, which is
  272. * limited to be 4-byte wide
  273. * @param cap output buffer for capability information
  274. * @param count size of ouput buffer
  275. * @return return code of the operation
  276. */
  277. uint32_t tpm_get_capability(uint32_t cap_area, uint32_t sub_cap,
  278. void *cap, size_t count);
  279. /**
  280. * Issue a TPM_FlushSpecific command for a AUTH ressource.
  281. *
  282. * @param auth_handle handle of the auth session
  283. * @return return code of the operation
  284. */
  285. uint32_t tpm_terminate_auth_session(uint32_t auth_handle);
  286. /**
  287. * Issue a TPM_OIAP command to setup an object independant authorization
  288. * session.
  289. * Information about the session is stored internally.
  290. * If there was already an OIAP session active it is terminated and a new
  291. * session is set up.
  292. *
  293. * @param auth_handle pointer to the (new) auth handle or NULL.
  294. * @return return code of the operation
  295. */
  296. uint32_t tpm_oiap(uint32_t *auth_handle);
  297. /**
  298. * Ends an active OIAP session.
  299. *
  300. * @return return code of the operation
  301. */
  302. uint32_t tpm_end_oiap(void);
  303. /**
  304. * Issue a TPM_LoadKey2 (Auth1) command using an OIAP session for authenticating
  305. * the usage of the parent key.
  306. *
  307. * @param parent_handle handle of the parent key.
  308. * @param key pointer to the key structure (TPM_KEY or TPM_KEY12).
  309. * @param key_length size of the key structure
  310. * @param parent_key_usage_auth usage auth for the parent key
  311. * @param key_handle pointer to the key handle
  312. * @return return code of the operation
  313. */
  314. uint32_t tpm_load_key2_oiap(uint32_t parent_handle,
  315. const void *key, size_t key_length,
  316. const void *parent_key_usage_auth,
  317. uint32_t *key_handle);
  318. /**
  319. * Issue a TPM_GetPubKey (Auth1) command using an OIAP session for
  320. * authenticating the usage of the key.
  321. *
  322. * @param key_handle handle of the key
  323. * @param usage_auth usage auth for the key
  324. * @param pubkey pointer to the pub key buffer; may be NULL if the pubkey
  325. * should not be stored.
  326. * @param pubkey_len pointer to the pub key buffer len. On entry: the size of
  327. * the provided pubkey buffer. On successful exit: the size
  328. * of the stored TPM_PUBKEY structure (iff pubkey != NULL).
  329. * @return return code of the operation
  330. */
  331. uint32_t tpm_get_pub_key_oiap(uint32_t key_handle, const void *usage_auth,
  332. void *pubkey, size_t *pubkey_len);
  333. #endif /* __TPM_H */