| // Copyright 2021 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| package hwsec |
| |
| import ( |
| "context" |
| "io/ioutil" |
| "path/filepath" |
| "time" |
| |
| "chromiumos/tast/ctxutil" |
| hwsecremote "chromiumos/tast/remote/hwsec" |
| "chromiumos/tast/testing" |
| ) |
| |
| func init() { |
| testing.AddTest(&testing.Test{ |
| Func: CryptohomeTPMLiveTests, |
| Desc: "Runs cryptohome's TPM live tests, which test TPM keys, PCR, and NVRAM functionality", |
| Contacts: []string{ |
| "cros-hwsec@chromium.org", |
| "yich@google.com", |
| }, |
| SoftwareDeps: []string{"tpm", "reboot"}, |
| Attr: []string{"group:hwsec_destructive_func"}, |
| Timeout: 15 * time.Minute, |
| }) |
| } |
| |
| // CryptohomeTPMLiveTests would check cryptohome-tpm-live-test running as expect. |
| func CryptohomeTPMLiveTests(ctx context.Context, s *testing.State) { |
| cmdRunner := hwsecremote.NewCmdRunner(s.DUT()) |
| |
| helper, err := hwsecremote.NewHelper(cmdRunner, s.DUT()) |
| if err != nil { |
| s.Fatal("Helper creation error: ", err) |
| } |
| |
| tpmManager := helper.TPMManagerClient() |
| |
| s.Log("Start resetting TPM if needed") |
| if err := helper.EnsureTPMAndSystemStateAreReset(ctx); err != nil { |
| s.Fatal("Failed to ensure resetting TPM: ", err) |
| } |
| s.Log("TPM is confirmed to be reset") |
| |
| ctxForResetTPM := ctx |
| ctx, cancel := ctxutil.Shorten(ctx, 5*time.Minute) |
| defer cancel() |
| defer func(ctx context.Context) { |
| // Clean the TPM up, so that the TPM state clobbered by the TPM live tests doesn't affect subsequent tests. |
| if err := helper.EnsureTPMAndSystemStateAreReset(ctx); err != nil { |
| s.Fatal("Failed to ensure resetting TPM: ", err) |
| } |
| }(ctxForResetTPM) |
| |
| if _, err := tpmManager.TakeOwnership(ctx); err != nil { |
| s.Fatal("Failed to take TPM ownership: ", err) |
| } |
| |
| if out, err := cmdRunner.Run(ctx, "cryptohome-tpm-live-test"); err != nil { |
| logFile := filepath.Join(s.OutDir(), "tpm_live_test_output.txt") |
| if writeErr := ioutil.WriteFile(logFile, out, 0644); writeErr != nil { |
| s.Errorf("Failed to write to %s: %v", logFile, writeErr) |
| } |
| |
| s.Fatal("TPM live test failed: ", err) |
| } |
| } |