tpm.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  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. /*
  10. * Here is a partial implementation of TPM commands. Please consult TCG Main
  11. * Specification for definitions of TPM commands.
  12. */
  13. #define TPM_HEADER_SIZE 10
  14. enum tpm_duration {
  15. TPM_SHORT = 0,
  16. TPM_MEDIUM = 1,
  17. TPM_LONG = 2,
  18. TPM_UNDEFINED,
  19. TPM_DURATION_COUNT,
  20. };
  21. enum tpm_startup_type {
  22. TPM_ST_CLEAR = 0x0001,
  23. TPM_ST_STATE = 0x0002,
  24. TPM_ST_DEACTIVATED = 0x0003,
  25. };
  26. enum tpm_physical_presence {
  27. TPM_PHYSICAL_PRESENCE_HW_DISABLE = 0x0200,
  28. TPM_PHYSICAL_PRESENCE_CMD_DISABLE = 0x0100,
  29. TPM_PHYSICAL_PRESENCE_LIFETIME_LOCK = 0x0080,
  30. TPM_PHYSICAL_PRESENCE_HW_ENABLE = 0x0040,
  31. TPM_PHYSICAL_PRESENCE_CMD_ENABLE = 0x0020,
  32. TPM_PHYSICAL_PRESENCE_NOTPRESENT = 0x0010,
  33. TPM_PHYSICAL_PRESENCE_PRESENT = 0x0008,
  34. TPM_PHYSICAL_PRESENCE_LOCK = 0x0004,
  35. };
  36. enum tpm_nv_index {
  37. TPM_NV_INDEX_LOCK = 0xffffffff,
  38. TPM_NV_INDEX_0 = 0x00000000,
  39. TPM_NV_INDEX_DIR = 0x10000001,
  40. };
  41. #define TPM_NV_PER_GLOBALLOCK (1U << 15)
  42. #define TPM_NV_PER_PPWRITE (1U << 0)
  43. #define TPM_NV_PER_READ_STCLEAR (1U << 31)
  44. #define TPM_NV_PER_WRITE_STCLEAR (1U << 14)
  45. enum {
  46. TPM_PUBEK_SIZE = 256,
  47. };
  48. /**
  49. * TPM return codes as defined in the TCG Main specification
  50. * (TPM Main Part 2 Structures; Specification version 1.2)
  51. */
  52. enum tpm_return_code {
  53. TPM_BASE = 0x00000000,
  54. TPM_NON_FATAL = 0x00000800,
  55. TPM_SUCCESS = TPM_BASE,
  56. /* TPM-defined fatal error codes */
  57. TPM_AUTHFAIL = TPM_BASE + 1,
  58. TPM_BADINDEX = TPM_BASE + 2,
  59. TPM_BAD_PARAMETER = TPM_BASE + 3,
  60. TPM_AUDITFAILURE = TPM_BASE + 4,
  61. TPM_CLEAR_DISABLED = TPM_BASE + 5,
  62. TPM_DEACTIVATED = TPM_BASE + 6,
  63. TPM_DISABLED = TPM_BASE + 7,
  64. TPM_DISABLED_CMD = TPM_BASE + 8,
  65. TPM_FAIL = TPM_BASE + 9,
  66. TPM_BAD_ORDINAL = TPM_BASE + 10,
  67. TPM_INSTALL_DISABLED = TPM_BASE + 11,
  68. TPM_INVALID_KEYHANDLE = TPM_BASE + 12,
  69. TPM_KEYNOTFOUND = TPM_BASE + 13,
  70. TPM_INAPPROPRIATE_ENC = TPM_BASE + 14,
  71. TPM_MIGRATE_FAIL = TPM_BASE + 15,
  72. TPM_INVALID_PCR_INFO = TPM_BASE + 16,
  73. TPM_NOSPACE = TPM_BASE + 17,
  74. TPM_NOSRK = TPM_BASE + 18,
  75. TPM_NOTSEALED_BLOB = TPM_BASE + 19,
  76. TPM_OWNER_SET = TPM_BASE + 20,
  77. TPM_RESOURCES = TPM_BASE + 21,
  78. TPM_SHORTRANDOM = TPM_BASE + 22,
  79. TPM_SIZE = TPM_BASE + 23,
  80. TPM_WRONGPCRVAL = TPM_BASE + 24,
  81. TPM_BAD_PARAM_SIZE = TPM_BASE + 25,
  82. TPM_SHA_THREAD = TPM_BASE + 26,
  83. TPM_SHA_ERROR = TPM_BASE + 27,
  84. TPM_FAILEDSELFTEST = TPM_BASE + 28,
  85. TPM_AUTH2FAIL = TPM_BASE + 29,
  86. TPM_BADTAG = TPM_BASE + 30,
  87. TPM_IOERROR = TPM_BASE + 31,
  88. TPM_ENCRYPT_ERROR = TPM_BASE + 32,
  89. TPM_DECRYPT_ERROR = TPM_BASE + 33,
  90. TPM_INVALID_AUTHHANDLE = TPM_BASE + 34,
  91. TPM_NO_ENDORSEMENT = TPM_BASE + 35,
  92. TPM_INVALID_KEYUSAGE = TPM_BASE + 36,
  93. TPM_WRONG_ENTITYTYPE = TPM_BASE + 37,
  94. TPM_INVALID_POSTINIT = TPM_BASE + 38,
  95. TPM_INAPPROPRIATE_SIG = TPM_BASE + 39,
  96. TPM_BAD_KEY_PROPERTY = TPM_BASE + 40,
  97. TPM_BAD_MIGRATION = TPM_BASE + 41,
  98. TPM_BAD_SCHEME = TPM_BASE + 42,
  99. TPM_BAD_DATASIZE = TPM_BASE + 43,
  100. TPM_BAD_MODE = TPM_BASE + 44,
  101. TPM_BAD_PRESENCE = TPM_BASE + 45,
  102. TPM_BAD_VERSION = TPM_BASE + 46,
  103. TPM_NO_WRAP_TRANSPORT = TPM_BASE + 47,
  104. TPM_AUDITFAIL_UNSUCCESSFUL = TPM_BASE + 48,
  105. TPM_AUDITFAIL_SUCCESSFUL = TPM_BASE + 49,
  106. TPM_NOTRESETABLE = TPM_BASE + 50,
  107. TPM_NOTLOCAL = TPM_BASE + 51,
  108. TPM_BAD_TYPE = TPM_BASE + 52,
  109. TPM_INVALID_RESOURCE = TPM_BASE + 53,
  110. TPM_NOTFIPS = TPM_BASE + 54,
  111. TPM_INVALID_FAMILY = TPM_BASE + 55,
  112. TPM_NO_NV_PERMISSION = TPM_BASE + 56,
  113. TPM_REQUIRES_SIGN = TPM_BASE + 57,
  114. TPM_KEY_NOTSUPPORTED = TPM_BASE + 58,
  115. TPM_AUTH_CONFLICT = TPM_BASE + 59,
  116. TPM_AREA_LOCKED = TPM_BASE + 60,
  117. TPM_BAD_LOCALITY = TPM_BASE + 61,
  118. TPM_READ_ONLY = TPM_BASE + 62,
  119. TPM_PER_NOWRITE = TPM_BASE + 63,
  120. TPM_FAMILY_COUNT = TPM_BASE + 64,
  121. TPM_WRITE_LOCKED = TPM_BASE + 65,
  122. TPM_BAD_ATTRIBUTES = TPM_BASE + 66,
  123. TPM_INVALID_STRUCTURE = TPM_BASE + 67,
  124. TPM_KEY_OWNER_CONTROL = TPM_BASE + 68,
  125. TPM_BAD_COUNTER = TPM_BASE + 69,
  126. TPM_NOT_FULLWRITE = TPM_BASE + 70,
  127. TPM_CONTEXT_GAP = TPM_BASE + 71,
  128. TPM_MAXNVWRITES = TPM_BASE + 72,
  129. TPM_NOOPERATOR = TPM_BASE + 73,
  130. TPM_RESOURCEMISSING = TPM_BASE + 74,
  131. TPM_DELEGATE_LOCK = TPM_BASE + 75,
  132. TPM_DELEGATE_FAMILY = TPM_BASE + 76,
  133. TPM_DELEGATE_ADMIN = TPM_BASE + 77,
  134. TPM_TRANSPORT_NOTEXCLUSIVE = TPM_BASE + 78,
  135. TPM_OWNER_CONTROL = TPM_BASE + 79,
  136. TPM_DAA_RESOURCES = TPM_BASE + 80,
  137. TPM_DAA_INPUT_DATA0 = TPM_BASE + 81,
  138. TPM_DAA_INPUT_DATA1 = TPM_BASE + 82,
  139. TPM_DAA_ISSUER_SETTINGS = TPM_BASE + 83,
  140. TPM_DAA_TPM_SETTINGS = TPM_BASE + 84,
  141. TPM_DAA_STAGE = TPM_BASE + 85,
  142. TPM_DAA_ISSUER_VALIDITY = TPM_BASE + 86,
  143. TPM_DAA_WRONG_W = TPM_BASE + 87,
  144. TPM_BAD_HANDLE = TPM_BASE + 88,
  145. TPM_BAD_DELEGATE = TPM_BASE + 89,
  146. TPM_BADCONTEXT = TPM_BASE + 90,
  147. TPM_TOOMANYCONTEXTS = TPM_BASE + 91,
  148. TPM_MA_TICKET_SIGNATURE = TPM_BASE + 92,
  149. TPM_MA_DESTINATION = TPM_BASE + 93,
  150. TPM_MA_SOURCE = TPM_BASE + 94,
  151. TPM_MA_AUTHORITY = TPM_BASE + 95,
  152. TPM_PERMANENTEK = TPM_BASE + 97,
  153. TPM_BAD_SIGNATURE = TPM_BASE + 98,
  154. TPM_NOCONTEXTSPACE = TPM_BASE + 99,
  155. /* TPM-defined non-fatal errors */
  156. TPM_RETRY = TPM_BASE + TPM_NON_FATAL,
  157. TPM_NEEDS_SELFTEST = TPM_BASE + TPM_NON_FATAL + 1,
  158. TPM_DOING_SELFTEST = TPM_BASE + TPM_NON_FATAL + 2,
  159. TPM_DEFEND_LOCK_RUNNING = TPM_BASE + TPM_NON_FATAL + 3,
  160. };
  161. struct tpm_permanent_flags {
  162. __be16 tag;
  163. u8 disable;
  164. u8 ownership;
  165. u8 deactivated;
  166. u8 read_pubek;
  167. u8 disable_owner_clear;
  168. u8 allow_maintenance;
  169. u8 physical_presence_lifetime_lock;
  170. u8 physical_presence_hw_enable;
  171. u8 physical_presence_cmd_enable;
  172. u8 cekp_used;
  173. u8 tpm_post;
  174. u8 tpm_post_lock;
  175. u8 fips;
  176. u8 operator;
  177. u8 enable_revoke_ek;
  178. u8 nv_locked;
  179. u8 read_srk_pub;
  180. u8 tpm_established;
  181. u8 maintenance_done;
  182. u8 disable_full_da_logic_info;
  183. } __packed;
  184. /* Max buffer size supported by our tpm */
  185. #define TPM_DEV_BUFSIZE 1260
  186. /**
  187. * struct tpm_chip_priv - Information about a TPM, stored by the uclass
  188. *
  189. * These values must be set up by the device's probe() method before
  190. * communcation is attempted. If the device has an xfer() method, this is
  191. * not needed. There is no need to set up @buf.
  192. *
  193. * @duration_ms: Length of each duration type in milliseconds
  194. * @retry_time_ms: Time to wait before retrying receive
  195. */
  196. struct tpm_chip_priv {
  197. uint duration_ms[TPM_DURATION_COUNT];
  198. uint retry_time_ms;
  199. u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
  200. };
  201. /**
  202. * struct tpm_ops - low-level TPM operations
  203. *
  204. * These are designed to avoid loops and delays in the driver itself. These
  205. * should be handled in the uclass.
  206. *
  207. * In gneral you should implement everything except xfer(). Where you need
  208. * complete control of the transfer, then xfer() can be provided and will
  209. * override the other methods.
  210. *
  211. * This interface is for low-level TPM access. It does not understand the
  212. * concept of localities or the various TPM messages. That interface is
  213. * defined in the functions later on in this file, but they all translate
  214. * to bytes which are sent and received.
  215. */
  216. struct tpm_ops {
  217. /**
  218. * open() - Request access to locality 0 for the caller
  219. *
  220. * After all commands have been completed the caller should call
  221. * close().
  222. *
  223. * @dev: Device to close
  224. * @return 0 ok OK, -ve on error
  225. */
  226. int (*open)(struct udevice *dev);
  227. /**
  228. * close() - Close the current session
  229. *
  230. * Releasing the locked locality. Returns 0 on success, -ve 1 on
  231. * failure (in case lock removal did not succeed).
  232. *
  233. * @dev: Device to close
  234. * @return 0 ok OK, -ve on error
  235. */
  236. int (*close)(struct udevice *dev);
  237. /**
  238. * get_desc() - Get a text description of the TPM
  239. *
  240. * @dev: Device to check
  241. * @buf: Buffer to put the string
  242. * @size: Maximum size of buffer
  243. * @return length of string, or -ENOSPC it no space
  244. */
  245. int (*get_desc)(struct udevice *dev, char *buf, int size);
  246. /**
  247. * send() - send data to the TPM
  248. *
  249. * @dev: Device to talk to
  250. * @sendbuf: Buffer of the data to send
  251. * @send_size: Size of the data to send
  252. *
  253. * Returns 0 on success or -ve on failure.
  254. */
  255. int (*send)(struct udevice *dev, const uint8_t *sendbuf,
  256. size_t send_size);
  257. /**
  258. * recv() - receive a response from the TPM
  259. *
  260. * @dev: Device to talk to
  261. * @recvbuf: Buffer to save the response to
  262. * @max_size: Maximum number of bytes to receive
  263. *
  264. * Returns number of bytes received on success, -EAGAIN if the TPM
  265. * response is not ready, -EINTR if cancelled, or other -ve value on
  266. * failure.
  267. */
  268. int (*recv)(struct udevice *dev, uint8_t *recvbuf, size_t max_size);
  269. /**
  270. * cleanup() - clean up after an operation in progress
  271. *
  272. * This is called if receiving times out. The TPM may need to abort
  273. * the current transaction if it did not complete, and make itself
  274. * ready for another.
  275. *
  276. * @dev: Device to talk to
  277. */
  278. int (*cleanup)(struct udevice *dev);
  279. /**
  280. * xfer() - send data to the TPM and get response
  281. *
  282. * This method is optional. If it exists it is used in preference
  283. * to send(), recv() and cleanup(). It should handle all aspects of
  284. * TPM communication for a single transfer.
  285. *
  286. * @dev: Device to talk to
  287. * @sendbuf: Buffer of the data to send
  288. * @send_size: Size of the data to send
  289. * @recvbuf: Buffer to save the response to
  290. * @recv_size: Pointer to the size of the response buffer
  291. *
  292. * Returns 0 on success (and places the number of response bytes at
  293. * recv_size) or -ve on failure.
  294. */
  295. int (*xfer)(struct udevice *dev, const uint8_t *sendbuf,
  296. size_t send_size, uint8_t *recvbuf, size_t *recv_size);
  297. };
  298. #define tpm_get_ops(dev) ((struct tpm_ops *)device_get_ops(dev))
  299. /**
  300. * tpm_open() - Request access to locality 0 for the caller
  301. *
  302. * After all commands have been completed the caller is supposed to
  303. * call tpm_close().
  304. *
  305. * Returns 0 on success, -ve on failure.
  306. */
  307. int tpm_open(struct udevice *dev);
  308. /**
  309. * tpm_close() - Close the current session
  310. *
  311. * Releasing the locked locality. Returns 0 on success, -ve 1 on
  312. * failure (in case lock removal did not succeed).
  313. */
  314. int tpm_close(struct udevice *dev);
  315. /**
  316. * tpm_get_desc() - Get a text description of the TPM
  317. *
  318. * @dev: Device to check
  319. * @buf: Buffer to put the string
  320. * @size: Maximum size of buffer
  321. * @return length of string, or -ENOSPC it no space
  322. */
  323. int tpm_get_desc(struct udevice *dev, char *buf, int size);
  324. /**
  325. * tpm_xfer() - send data to the TPM and get response
  326. *
  327. * This first uses the device's send() method to send the bytes. Then it calls
  328. * recv() to get the reply. If recv() returns -EAGAIN then it will delay a
  329. * short time and then call recv() again.
  330. *
  331. * Regardless of whether recv() completes successfully, it will then call
  332. * cleanup() to finish the transaction.
  333. *
  334. * Note that the outgoing data is inspected to determine command type
  335. * (ordinal) and a timeout is used for that command type.
  336. *
  337. * @sendbuf - buffer of the data to send
  338. * @send_size size of the data to send
  339. * @recvbuf - memory to save the response to
  340. * @recv_len - pointer to the size of the response buffer
  341. *
  342. * Returns 0 on success (and places the number of response bytes at
  343. * recv_len) or -ve on failure.
  344. */
  345. int tpm_xfer(struct udevice *dev, const uint8_t *sendbuf, size_t send_size,
  346. uint8_t *recvbuf, size_t *recv_size);
  347. /**
  348. * Initialize TPM device. It must be called before any TPM commands.
  349. *
  350. * @return 0 on success, non-0 on error.
  351. */
  352. int tpm_init(void);
  353. /**
  354. * Issue a TPM_Startup command.
  355. *
  356. * @param mode TPM startup mode
  357. * @return return code of the operation
  358. */
  359. uint32_t tpm_startup(enum tpm_startup_type mode);
  360. /**
  361. * Issue a TPM_SelfTestFull command.
  362. *
  363. * @return return code of the operation
  364. */
  365. uint32_t tpm_self_test_full(void);
  366. /**
  367. * Issue a TPM_ContinueSelfTest command.
  368. *
  369. * @return return code of the operation
  370. */
  371. uint32_t tpm_continue_self_test(void);
  372. /**
  373. * Issue a TPM_NV_DefineSpace command. The implementation is limited
  374. * to specify TPM_NV_ATTRIBUTES and size of the area. The area index
  375. * could be one of the special value listed in enum tpm_nv_index.
  376. *
  377. * @param index index of the area
  378. * @param perm TPM_NV_ATTRIBUTES of the area
  379. * @param size size of the area
  380. * @return return code of the operation
  381. */
  382. uint32_t tpm_nv_define_space(uint32_t index, uint32_t perm, uint32_t size);
  383. /**
  384. * Issue a TPM_NV_ReadValue command. This implementation is limited
  385. * to read the area from offset 0. The area index could be one of
  386. * the special value listed in enum tpm_nv_index.
  387. *
  388. * @param index index of the area
  389. * @param data output buffer of the area contents
  390. * @param count size of output buffer
  391. * @return return code of the operation
  392. */
  393. uint32_t tpm_nv_read_value(uint32_t index, void *data, uint32_t count);
  394. /**
  395. * Issue a TPM_NV_WriteValue command. This implementation is limited
  396. * to write the area from offset 0. The area index could be one of
  397. * the special value listed in enum tpm_nv_index.
  398. *
  399. * @param index index of the area
  400. * @param data input buffer to be wrote to the area
  401. * @param length length of data bytes of input buffer
  402. * @return return code of the operation
  403. */
  404. uint32_t tpm_nv_write_value(uint32_t index, const void *data, uint32_t length);
  405. /**
  406. * Issue a TPM_Extend command.
  407. *
  408. * @param index index of the PCR
  409. * @param in_digest 160-bit value representing the event to be
  410. * recorded
  411. * @param out_digest 160-bit PCR value after execution of the
  412. * command
  413. * @return return code of the operation
  414. */
  415. uint32_t tpm_extend(uint32_t index, const void *in_digest, void *out_digest);
  416. /**
  417. * Issue a TPM_PCRRead command.
  418. *
  419. * @param index index of the PCR
  420. * @param data output buffer for contents of the named PCR
  421. * @param count size of output buffer
  422. * @return return code of the operation
  423. */
  424. uint32_t tpm_pcr_read(uint32_t index, void *data, size_t count);
  425. /**
  426. * Issue a TSC_PhysicalPresence command. TPM physical presence flag
  427. * is bit-wise OR'ed of flags listed in enum tpm_physical_presence.
  428. *
  429. * @param presence TPM physical presence flag
  430. * @return return code of the operation
  431. */
  432. uint32_t tpm_tsc_physical_presence(uint16_t presence);
  433. /**
  434. * Issue a TPM_ReadPubek command.
  435. *
  436. * @param data output buffer for the public endorsement key
  437. * @param count size of ouput buffer
  438. * @return return code of the operation
  439. */
  440. uint32_t tpm_read_pubek(void *data, size_t count);
  441. /**
  442. * Issue a TPM_ForceClear command.
  443. *
  444. * @return return code of the operation
  445. */
  446. uint32_t tpm_force_clear(void);
  447. /**
  448. * Issue a TPM_PhysicalEnable command.
  449. *
  450. * @return return code of the operation
  451. */
  452. uint32_t tpm_physical_enable(void);
  453. /**
  454. * Issue a TPM_PhysicalDisable command.
  455. *
  456. * @return return code of the operation
  457. */
  458. uint32_t tpm_physical_disable(void);
  459. /**
  460. * Issue a TPM_PhysicalSetDeactivated command.
  461. *
  462. * @param state boolean state of the deactivated flag
  463. * @return return code of the operation
  464. */
  465. uint32_t tpm_physical_set_deactivated(uint8_t state);
  466. /**
  467. * Issue a TPM_GetCapability command. This implementation is limited
  468. * to query sub_cap index that is 4-byte wide.
  469. *
  470. * @param cap_area partition of capabilities
  471. * @param sub_cap further definition of capability, which is
  472. * limited to be 4-byte wide
  473. * @param cap output buffer for capability information
  474. * @param count size of ouput buffer
  475. * @return return code of the operation
  476. */
  477. uint32_t tpm_get_capability(uint32_t cap_area, uint32_t sub_cap,
  478. void *cap, size_t count);
  479. /**
  480. * Issue a TPM_FlushSpecific command for a AUTH ressource.
  481. *
  482. * @param auth_handle handle of the auth session
  483. * @return return code of the operation
  484. */
  485. uint32_t tpm_terminate_auth_session(uint32_t auth_handle);
  486. /**
  487. * Issue a TPM_OIAP command to setup an object independant authorization
  488. * session.
  489. * Information about the session is stored internally.
  490. * If there was already an OIAP session active it is terminated and a new
  491. * session is set up.
  492. *
  493. * @param auth_handle pointer to the (new) auth handle or NULL.
  494. * @return return code of the operation
  495. */
  496. uint32_t tpm_oiap(uint32_t *auth_handle);
  497. /**
  498. * Ends an active OIAP session.
  499. *
  500. * @return return code of the operation
  501. */
  502. uint32_t tpm_end_oiap(void);
  503. /**
  504. * Issue a TPM_LoadKey2 (Auth1) command using an OIAP session for authenticating
  505. * the usage of the parent key.
  506. *
  507. * @param parent_handle handle of the parent key.
  508. * @param key pointer to the key structure (TPM_KEY or TPM_KEY12).
  509. * @param key_length size of the key structure
  510. * @param parent_key_usage_auth usage auth for the parent key
  511. * @param key_handle pointer to the key handle
  512. * @return return code of the operation
  513. */
  514. uint32_t tpm_load_key2_oiap(uint32_t parent_handle,
  515. const void *key, size_t key_length,
  516. const void *parent_key_usage_auth,
  517. uint32_t *key_handle);
  518. /**
  519. * Issue a TPM_GetPubKey (Auth1) command using an OIAP session for
  520. * authenticating the usage of the key.
  521. *
  522. * @param key_handle handle of the key
  523. * @param usage_auth usage auth for the key
  524. * @param pubkey pointer to the pub key buffer; may be NULL if the pubkey
  525. * should not be stored.
  526. * @param pubkey_len pointer to the pub key buffer len. On entry: the size of
  527. * the provided pubkey buffer. On successful exit: the size
  528. * of the stored TPM_PUBKEY structure (iff pubkey != NULL).
  529. * @return return code of the operation
  530. */
  531. uint32_t tpm_get_pub_key_oiap(uint32_t key_handle, const void *usage_auth,
  532. void *pubkey, size_t *pubkey_len);
  533. /**
  534. * Get the TPM permanent flags value
  535. *
  536. * @param pflags Place to put permanent flags
  537. * @return return code of the operation
  538. */
  539. uint32_t tpm_get_permanent_flags(struct tpm_permanent_flags *pflags);
  540. /**
  541. * Get the TPM permissions
  542. *
  543. * @param perm Returns permissions value
  544. * @return return code of the operation
  545. */
  546. uint32_t tpm_get_permissions(uint32_t index, uint32_t *perm);
  547. #endif /* __TPM_H */