mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e5e5161520
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
40 lines
702 B
Go
40 lines
702 B
Go
package vtpm
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/google/go-tpm/tpm2"
|
|
)
|
|
|
|
const (
|
|
// tpmPath is the path to the vTPM.
|
|
tpmPath = "/dev/tpmrm0"
|
|
)
|
|
|
|
// TPMOpenFunc opens a TPM device.
|
|
type TPMOpenFunc func() (io.ReadWriteCloser, error)
|
|
|
|
// OpenVTPM opens the vTPM at `TPMPath`.
|
|
func OpenVTPM() (io.ReadWriteCloser, error) {
|
|
return tpm2.OpenTPM(tpmPath)
|
|
}
|
|
|
|
type nopTPM struct{}
|
|
|
|
// OpenNOPTPM returns a NOP io.ReadWriteCloser that can be used as a TPM.
|
|
func OpenNOPTPM() (io.ReadWriteCloser, error) {
|
|
return &nopTPM{}, nil
|
|
}
|
|
|
|
func (t nopTPM) Read(p []byte) (int, error) {
|
|
return len(p), nil
|
|
}
|
|
|
|
func (t nopTPM) Write(p []byte) (int, error) {
|
|
return len(p), nil
|
|
}
|
|
|
|
func (t nopTPM) Close() error {
|
|
return nil
|
|
}
|