tpm_cred_store_harness.rs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // SPDX-License-Identifier: AGPL-3.0-or-later
  2. //! Module containing [TpmCredStoreHarness].
  3. use btlib::{
  4. crypto::{tpm::TpmCredStore, CredStore, Creds},
  5. error::AnyhowErrorExt,
  6. Epoch, Principaled, Result,
  7. };
  8. use core::time::Duration;
  9. use swtpm_harness::SwtpmHarness;
  10. /// A test harness which allows a [TpmCredStore] to be accessed.
  11. pub struct TpmCredStoreHarness {
  12. root_passwd: String,
  13. cred_store: TpmCredStore,
  14. swtpm: SwtpmHarness,
  15. }
  16. impl TpmCredStoreHarness {
  17. /// Creates a new test harness by starting a new instance of swtpm, generating root and node
  18. /// creds, and issuing a writecap to the node creds.
  19. pub fn new(root_passwd: String) -> Result<Self> {
  20. let swtpm = SwtpmHarness::new().bterr()?;
  21. let cred_store =
  22. TpmCredStore::from_context(swtpm.context()?, swtpm.state_path().to_owned())?;
  23. let root_creds = cred_store.gen_root_creds(&root_passwd).unwrap();
  24. let mut node_creds = cred_store.node_creds().unwrap();
  25. let expires = Epoch::now() + Duration::from_secs(3600);
  26. let writecap = root_creds
  27. .issue_writecap(node_creds.principal(), vec![], expires)
  28. .unwrap();
  29. cred_store
  30. .assign_node_writecap(&mut node_creds, writecap)
  31. .unwrap();
  32. Ok(Self {
  33. root_passwd,
  34. swtpm,
  35. cred_store,
  36. })
  37. }
  38. pub fn root_passwd(&self) -> &str {
  39. &self.root_passwd
  40. }
  41. pub fn swtpm(&self) -> &SwtpmHarness {
  42. &self.swtpm
  43. }
  44. pub fn cred_store(&self) -> &TpmCredStore {
  45. &self.cred_store
  46. }
  47. }