google / go-tpm

Apache License 2.0
561 stars 161 forks source link

EvictControl missing from new tpm2 #335

Closed frezbo closed 1 year ago

frezbo commented 1 year ago

legacy tpm2 had a evictcontrol https://github.com/google/go-tpm/blob/f17b0354fbfcce8fe6db7cea78dd029c334529ad/legacy/tpm2/tpm2.go#L1125 to persist , seems to be missing in new tpm2. Or is that not needed anymore?

Foxboron commented 1 year ago

Or is that not needed anymore?

As the tpmdirect API is suppose to mirror the actual TPM API, it's missing it seems. This makes dealing with key hierarchies impossible(?) with the current API.

frezbo commented 1 year ago

Thanks, I was wondering how to persist an SRK key

Foxboron commented 1 year ago

Yes, I'm dealing with the exactly the same problem trying to learn the new API :)

chrisfenner commented 1 year ago

It's needed and welcome, please feel free to send a PR based on the structure of the other commands, and I'd be happy to prioritize review (because reviewing the 1:1 mapped spec-to-structs code is pretty straightforward). Thank you for trying out the new API!

chrisfenner commented 1 year ago

<remove go-TPM hat, don TCG/TPM hat>

The reason EvictControl isn't yet available in the new API is that you don't actually need it, most of the time. Of course, if you are trying to plug in to an existing infra that expects, for example, a persistent RSA SRK, then you need it.

The reason I say you do not really need it:

EvictControl takes an existing object and stores it to TPM NV for convenience. Usually this is done on Primary Keys. The main reasons (besides avoiding another call to CreatePrimary/FlushContext) this is done:

  1. That most closely reflects how the SRK worked in TPM 1.2 (it was special, somebody had to make it)
  2. RSA Primary Keys can take a very long time to generate each time

If you're using ECC Primary Keys (which I would recommend), the CreatePrimary call will in some cases be faster than using the key out of NV flash memory.

All that said, PR to add EvictControl is completely welcome 😎

Foxboron commented 1 year ago

Right, because just using CreatePrimary with the SRK template should always give you the correct key regardless.

However, it seems like projects like systemd use EvictControl to ensure a known persistent key can be used for sessions. Is this one of the few valid use cases for EvictControl?

https://github.com/systemd/systemd/pull/26185

chrisfenner commented 1 year ago

Depending on how you have the owner hierarchy password/policy set up, then the persisted key being present at the expected index could be an indicator of trust; however, you need owner auth to CreatePrimary, same as to EvictControl. I'm not familiar enough with how systemd is using the persisted SRK to comment further: I am used to environments where the owner auth is well-known and thus not a barrier to adversaries in the threat model.

frezbo commented 1 year ago

Right, because just using CreatePrimary with the SRK template should always give you the correct key regardless.

However, it seems like projects like systemd use EvictControl to ensure a known persistent key can be used for sessions. Is this one of the few valid use cases for EvictControl?

systemd/systemd#26185

I was also implementing the systemd flow in go, and hit by this, though v253 of systemd did not use an SRK at all

frezbo commented 1 year ago

Right, because just using CreatePrimary with the SRK template should always give you the correct key regardless. However, it seems like projects like systemd use EvictControl to ensure a known persistent key can be used for sessions. Is this one of the few valid use cases for EvictControl? systemd/systemd#26185

I was also implementing the systemd flow in go, and hit by this, though v253 of systemd did not use an SRK at all

okay, the reason probably systemd persists it is due to that fact that falls back to RSA if ECC is not supported. Otherwise it doesn't seem no reason to persist an ECC key

chrisfenner commented 1 year ago

Regardless of if systemd demands it, a PR adding EvictControl here would still be quite welcome (maybe someone else has a use case) :)