2023-03-09 05:22:58 -05:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2023-06-09 09:41:02 -04:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/attestation/variant"
|
2023-03-09 05:22:58 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
|
|
|
"github.com/edgelesssys/constellation/v2/measurement-reader/internal/sorted"
|
2023-03-09 12:11:47 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/measurement-reader/internal/tdx"
|
2023-03-09 05:22:58 -05:00
|
|
|
"github.com/edgelesssys/constellation/v2/measurement-reader/internal/tpm"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
"go.uber.org/zap/zapcore"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
log := logger.New(logger.JSONLog, zapcore.InfoLevel)
|
2023-03-29 03:30:13 -04:00
|
|
|
variantString := os.Getenv(constants.AttestationVariant)
|
|
|
|
attestationVariant, err := variant.FromString(variantString)
|
2023-03-09 05:22:58 -05:00
|
|
|
if err != nil {
|
|
|
|
log.With(zap.Error(err)).Fatalf("Failed to parse attestation variant")
|
|
|
|
}
|
|
|
|
|
|
|
|
var m []sorted.Measurement
|
|
|
|
switch attestationVariant {
|
2023-06-09 09:41:02 -04:00
|
|
|
case variant.AWSNitroTPM{}, variant.AWSSEVSNP{}, variant.AzureSEVSNP{}, variant.AzureTrustedLaunch{}, variant.GCPSEVES{}, variant.QEMUVTPM{}:
|
2023-03-09 05:22:58 -05:00
|
|
|
m, err = tpm.Measurements()
|
|
|
|
if err != nil {
|
|
|
|
log.With(zap.Error(err)).Fatalf("Failed to read TPM measurements")
|
|
|
|
}
|
2023-03-10 05:33:06 -05:00
|
|
|
case variant.QEMUTDX{}:
|
2023-03-09 12:11:47 -05:00
|
|
|
m, err = tdx.Measurements()
|
|
|
|
if err != nil {
|
|
|
|
log.With(zap.Error(err)).Fatalf("Failed to read Intel TDX measurements")
|
|
|
|
}
|
2023-03-09 05:22:58 -05:00
|
|
|
default:
|
2023-03-29 03:30:13 -04:00
|
|
|
log.With(zap.String("attestationVariant", variantString)).Fatalf("Unsupported attestation variant")
|
2023-03-09 05:22:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Measurements:")
|
|
|
|
for _, measurement := range m {
|
2023-03-09 12:11:47 -05:00
|
|
|
// -7 should ensure consistent padding across all current prefixes: PCR[xx], MRTD, RTMR[x].
|
|
|
|
// If the prefix gets longer somewhen in the future, this might need adjustment for consistent padding.
|
|
|
|
fmt.Printf("\t%-7s : 0x%0X\n", measurement.Index, measurement.Value)
|
2023-03-09 05:22:58 -05:00
|
|
|
}
|
|
|
|
}
|