google/go-tpm

EvictControl missing from new tpm2

frezbo opened this issue · 10 comments

frezbo commented

legacy tpm2 had a evictcontrol

func EvictControl(rw io.ReadWriter, ownerAuth string, owner, objectHandle, persistentHandle tpmutil.Handle) error {
to persist , seems to be missing in new tpm2. Or is that not needed anymore?

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

Thanks, I was wondering how to persist an SRK key

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

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!

<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 😎

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

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

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

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

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