AMD SEV-SNP¶
How to use the AMD SEV-SNP platform¶
CCF must run on an AMD CPU which supports SEV-SNP, such as Azure confidential containers or Azure Kubernetes Service with Confidential Containers.
CCF will use the SEV-SNP platform features automatically on the supported hardware.
Attestation¶
SNP attestation provide several fields needed to establish trust. Several deployment scenarios are possible.
Confidential Azure Container Instance (ACI)¶
Azure Confidential ACI provides a security context directory containing the following files.
security-policy-base64
: The security policy [1] describing the state and transitions allowed for the container (Base64 encoded). The SHA256 hash of the decoded value should match the attestation reporthost_data
. This value is stored in the nodes.snp.host_data table.reference-info-base64
: The COSE Sign1 document containing the measurement [2] of the utility VM (UVM) used to launch the container (Base64 encoded). The measurement contained in the document payload should match the reportmeasurement
. If set, the value is stored in the nodes.snp.uvm_endorsements table and new nodes must present measurement endorsements from the same issuer (did:x509) to be trusted.host-amd-cert-base64
: The Base64 encoded certificate chain for the VCEK used to sign the attestation report. Note that since this file is provisioned early in the container’s lifetime, and because PSP firmware updates can happen at any time, it may be out of date by the time the node attempts to make use of it. Configuring at least one fall-back server is recommended for that reason.
The location of the security context directory is passed to the container’s startup command as the UVM_SECURITY_CONTEXT_DIR
environment variable. CCF can be configured to fetch the security policy and UVM endorsements from the security context directory by setting the snp_security_policy_file
and snp_uvm_endorsements_file
configuration options, respectively.
The preferred backup source for AMD VCEK endorsements is the THIM service, exposed at $Fabric_NodeIPOrFQDN:2377
in Confidential ACI containers, but configuring the Azure cache or the AMD server is also possible.
Tip
See samples/config/start_config_aci_sev_snp.json for a sample node configuration for ACI deployments.
Confidential Azure Kubernetes Service (AKS)¶
Note
See here for more information on the deployment of confidential containers in Azure.
Confidential AKS provides a security context directory containing the following file.
reference-info-base64
: The COSE Sign1 document containing the measurement [2] of the utility VM (UVM) used to launch the container (Base64 encoded). The measurement contained in the document payload should match the reportmeasurement
. If set, the value is stored in the nodes.snp.uvm_endorsements table and new nodes must present measurement endorsements from the same issuer (did:x509) to be trusted.
The security policy must be provided by the operator, and will be picked up by CCF on startup if is named security-policy-base64
and located in the security context directory. The SHA256 hash of the decoded value should match the attestation report host_data
. This value is stored in the nodes.snp.host_data table.
AMD VCEK endorsements must be fetched, preferably from the THIM service, but configuring the Azure cache or the AMD server is also possible.
Tip
See samples/config/start_config_aks_sev_snp.json for a sample node configuration for Confidential AKS deployments.
Non-Azure Deployment¶
For non-Azure deployments, the certificate chain for VCEK can be retrieved either from file, if already cached, or from an endorsement server, as specified in the attestation.snp_endorsements_servers configuration section. For example, for the well-known AMD endorsement server, the value should be set to:
"attestation": {
"snp_endorsements_servers": [
{
"type": "AMD",
"url": "kdsintf.amd.com"
}
],
"snp_security_policy_file": "/path/to/security-policy-base64",
"snp_uvm_endorsements_file": "/path/to/reference-info-base64",
"snp_endorsements_file": "/path/to/host-amd-cert-base64"
}
Tip
See samples/config/start_config_amd_sev_snp.json for a sample node configuration for non-Azure deployments.
Note
If no local file is available, the CCF node will fetch the AMD VCEK endorsements from the server on startup, which may cause substantial deployment delays (up to tens of seconds) depending on network latency and endpoint throttling.
Governance Proposals¶
The following governance proposals can be issued to add/remove these trusted values, e.g. when upgrading the service (see Code Upgrade):
add_snp_host_data
/remove_snp_host_data
: To add/remove a trusted security policy, e.g. when adding a new trusted container image as part of the code upgrade procedure.add_snp_uvm_endorsement
/remove_snp_uvm_endorsement
: To add/remove a trusted UVM endorsement (Azure deployment only).add_snp_measurement
/remove_snp_measurement
: To add/remove a trusted measurement.set_snp_minimum_tcb_version_hex
/remove_snp_minimum_tcb_version
: To add/remove a minimum trusted TCB version. -set_snp_minimum_tcb_version
was deprecated in CCF 6.0.9 and replaced byset_snp_minimum_tcb_version_hex
.
Code update¶
Check Code Upgrade first.
Use
add_snp_host_data
andadd_snp_measurement
for the new code version.After adding new nodes and retiring old ones, use
remove_snp_host_data
andremove_snp_measurement
to remove the old values.
Examples:
{
"actions": [
{
"name": "add_snp_host_data",
"args": {
"host_data": "hex-encoded SHA256 digest of the security policy",
"security_policy": "security policy text string"
}
}
]
}
{
"actions": [
{
"name": "add_snp_measurement",
"args": {
"measurement": "5feee30d6d7e1a29f403d70a4198237ddfb13051a2d6976439487c609388ed7f98189887920ab2fa0096903a0c23fca1"
}
}
]
}
{
"actions": [
{
"name": "remove_snp_host_data",
"args": {
"host_data": "hex-encoded SHA256 digest of the security policy"
}
}
]
}
{
"actions": [
{
"name": "remove_snp_measurement",
"args": {
"measurement": "5feee30d6d7e1a29f403d70a4198237ddfb13051a2d6976439487c609388ed7f98189887920ab2fa0096903a0c23fca1"
}
}
]
}
Updating UVM endorsements¶
To update the UVM endorsements, for instance, to rev up the SVN version, use add_snp_uvm_endorsement
and remove_snp_uvm_endorsement
governance actions.
If performing a platform upgrade, new UVM endorsements should be added to the current network before joining new nodes.
Every endorsement is uniquely identified by (DID, feed) pair.
Examples:
{
"actions": [
{
"name": "add_snp_uvm_endorsement",
"args": {
"did": "did:x509:0:sha256:I__iuL25oXEVFdTP_aBLx_eT1RPHbCQ_ECBQfYZpt9s::eku:1.3.6.1.4.1.311.76.59.1.2",
"feed": "ContainerPlat-AMD-UVM",
"svn": "101"
}
}
]
}
{
"actions": [
{
"name": "remove_snp_uvm_endorsement",
"args": {
"did": "did:x509:0:sha256:I__iuL25oXEVFdTP_aBLx_eT1RPHbCQ_ECBQfYZpt9s::eku:1.3.6.1.4.1.311.76.59.1.2",
"feed": "ContainerPlat-AMD-UVM"
}
}
]
}
Setting the minimum TCB Version using set_snp_minimum_tcb_version_hex
¶
The set_snp_minimum_tcb_version_hex governance action was introduced in CCF 6.0.9 to simplify the process of setting the minimum TCB version for a specific CPU model. This action allows you to specify the CPUID and the TCB version as hex-strings, which are then parsed and stored in the nodes.snp.tcb_versions table. To set the minimum TCB version for a specific CPU model, you can use the following governance action:
{
"actions": [
{
"name": "set_snp_minimum_tcb_version_hex",
"args": {
"cpuid": "00a00f11",
"tcb_version": "d315000000000004"
}
}
]
}
The parsed TCB version mapped to that cpuid in the nodes.snp.tcb_versions table, which is used to validate the TCB version of joining nodes.
Note
The CPUID and TCB version must be input as lower-case hex-strings. The values in the above example are for Milan CPUs, and can be expanded as follows:
CPUID Field |
Value |
|
---|---|---|
dec |
hex |
|
Reserved |
0 |
0x0 |
Extended Family |
10 |
0x0a |
Extended Model |
0 |
0x0 |
Reserved |
0 |
0x0 |
Base Family |
15 |
0xf |
Base Model |
1 |
0x1 |
Stepping |
1 |
0x1 |
SNP attestation structures contain the combined Family (Extended Family + Base Family
) and Model (Extended Model : Base Model
) values, so 25 (0x19) and 1 (0x01) respectively for the above Milan example.
The above TCB version d315000000000004
is for a Milan CPU.
It, and also TCB versions for Genoa CPUs, can be expanded as follows:
TCB Version Field |
Value |
|
---|---|---|
dec |
hex |
|
Microcode |
211 |
0xd3 |
SNP |
21 |
0x15 |
Reserved |
0 |
0x00000000 |
TEE |
0 |
0x00 |
Boot Loader |
4 |
0x04 |
The TCB version for Turin CPUs have a different format with, for example, 1100000022334455
having the following expanded fields:
TCB Version Field |
Value |
|
---|---|---|
dec |
hex |
|
Microcode |
17 |
0x11 |
Reserved |
0 |
0x000000 |
SNP |
34 |
0x22 |
TEE |
51 |
0x33 |
Boot Loader |
68 |
0x44 |
FMC |
85 |
0x55 |
Footnotes