Re: [Patch v4 1/2] cgroup: svm: Add Encryption ID controller

From: David Rientjes
Date: Tue Jan 26 2021 - 22:20:41 EST


On Thu, 21 Jan 2021, Sean Christopherson wrote:

> True, but the expected dual-usage is more about backwards compatibility than
> anything else. Running an SEV-ES VM requires a heavily enlightened guest vBIOS
> and kernel, which means that a VM that was created as an SEV guest cannot easily
> be converted to an SEV-ES guest, and it would require cooperation from the guest
> (if it's even feasible?).
>
> SEV-SNP, another incremental enhancement (on SEV-ES), further strengthens the
> argument for SEV and SEV-* coexistenence. SEV-SNP and SEV-ES will share the
> same ASID range, so the question is really, "do we expect to run SEV guests and
> any flavor of SEV-* guests on the same platform". And due to SEV-* not being
> directly backward compatible with SEV, the answer will eventually be "yes", as
> we'll want to keep running existing SEV guest while also spinning up new SEV-*
> guests.
>

Agreed, cloud providers will most certainly want to run both SEV and SEV-*
guests on the same platform.

> That being said, it's certainly possible to abstract the different key types
> between AMD and Intel (assuming s390 won't use the cgroup due to it's plethora
> of keys). TDX private keys are equivalent to SEV-ES ASIDs, and MKTME keys (if
> the kernel ever gains a user) could be thrown into the same bucket as SEV IDs,
> albeit with some minor mental gymnastics.
>
> E.g. this mapping isn't horrendous:
>
> encrpytion_ids.basic.* == SEV == MKTME
> encrpytion_ids.enhanced.* == SEV-* == TDX
>
> The names will likely be a bit vague, but I don't think they'll be so far off
> that it'd be impossible for someone with SEV/TDX knowledge to glean their intent.
> And realistically, if anyone gets to the point where they care about controlling
> SEV or TDX IDs, they've already plowed through hundreds of pages of dense
> documentation; having to read a few lines of cgroup docs to understand basic vs.
> enhanced probably won't faze them at all.
>

The abstraction makes sense for both AMD and Intel offerings today. It
makes me wonder if we want a read-only
encryption_ids.{basic,enhanced}.type file to describe the underlying
technology ("SEV-ES/SEV-SNP", "TDX", etc). Since the technology is
discoverable by other means and we are assuming one encryption type per
pool of encryption ids, we likely don't need this.

I'm slightly concerned about extensibility if there is to be an
incremental enhancement atop SEV-* or TDX with yet another pool of
encryption ids. (For example, when we only had hugepages, this name was
perfect; then we got 1GB pages which became "gigantic pages", so are 512GB
pages "enormous"? :) I could argue (encryption_ids.basic.*,
encryption_ids.enhanced.*) should map to
(encryption_ids.legacy.*, encryption_ids.*) but that's likely
bikeshedding.

Thomas: does encryption_ids.{basic,enhanced}.* make sense for ASID
partitioning?

Tejun: if this makes sense for legacy SEV and SEV-* per Thomas, and this
is now abstracted to be technology (vendor) neutral, does this make sense
to you?