File: pcr_test.go

package info (click to toggle)
golang-github-google-go-tpm 0.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,932 kB
  • sloc: makefile: 13
file content (223 lines) | stat: -rw-r--r-- 5,248 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package tpm2test

import (
	"bytes"
	"crypto/sha1"
	"crypto/sha256"
	"crypto/sha512"
	"fmt"
	"testing"

	. "github.com/google/go-tpm/tpm2"
	"github.com/google/go-tpm/tpm2/transport/simulator"
)

func TestPCRs(t *testing.T) {
	for i, tc := range []struct {
		pcrs       []uint
		wantSelect []byte
	}{
		{
			pcrs:       nil,
			wantSelect: []byte{0x00, 0x00, 0x00},
		},
		{
			pcrs:       []uint{0},
			wantSelect: []byte{0x01, 0x00, 0x00},
		},
		{
			pcrs:       []uint{0, 1, 2},
			wantSelect: []byte{0x07, 0x00, 0x00},
		},
		{
			pcrs:       []uint{0, 7},
			wantSelect: []byte{0x81, 0x00, 0x00},
		},
		{
			pcrs:       []uint{8},
			wantSelect: []byte{0x00, 0x01, 0x00},
		},
		{
			pcrs:       []uint{1, 8, 9},
			wantSelect: []byte{0x02, 0x03, 0x00},
		},
		{
			pcrs:       []uint{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23},
			wantSelect: []byte{0xff, 0xff, 0xff},
		},
		{
			pcrs: []uint{255},
			wantSelect: []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
				0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80},
		},
	} {
		t.Run(fmt.Sprintf("%v", i), func(t *testing.T) {
			selection := PCClientCompatible.PCRs(tc.pcrs...)
			if !bytes.Equal(selection, tc.wantSelect) {
				t.Errorf("PCRs() = 0x%x, want 0x%x", selection, tc.wantSelect)
			}
		})
	}
}

var extendstpm2 = map[TPMAlgID][]struct {
	digest []byte
}{
	TPMAlgSHA1: {
		{bytes.Repeat([]byte{0x00}, sha1.Size)},
		{bytes.Repeat([]byte{0x01}, sha1.Size)},
		{bytes.Repeat([]byte{0x02}, sha1.Size)}},
	TPMAlgSHA256: {
		{bytes.Repeat([]byte{0x00}, sha256.Size)},
		{bytes.Repeat([]byte{0x01}, sha256.Size)},
		{bytes.Repeat([]byte{0x02}, sha256.Size)}},
	TPMAlgSHA384: {
		{bytes.Repeat([]byte{0x00}, sha512.Size384)},
		{bytes.Repeat([]byte{0x01}, sha512.Size384)},
		{bytes.Repeat([]byte{0x02}, sha512.Size384)}},
}

func allZero(s []byte) bool {
	for _, v := range s {
		if v != 0 {
			return false
		}
	}
	return true
}

func TestPCRReset(t *testing.T) {
	thetpm, err := simulator.OpenSimulator()
	if err != nil {
		t.Fatalf("could not connect to TPM simulator: %v", err)
	}
	defer thetpm.Close()

	DebugPCR := uint(16)

	cases := []struct {
		name    string
		hashalg TPMAlgID
	}{
		{"SHA1", TPMAlgSHA1},
		{"SHA256", TPMAlgSHA256},
		{"SHA384", TPMAlgSHA384},
	}

	for _, c := range cases {
		t.Run(c.name, func(t *testing.T) {
			authHandle := AuthHandle{
				Handle: TPMHandle(DebugPCR),
				Auth:   PasswordAuth(nil),
			}

			pcrRead := PCRRead{
				PCRSelectionIn: TPMLPCRSelection{
					PCRSelections: []TPMSPCRSelection{
						{
							Hash:      c.hashalg,
							PCRSelect: PCClientCompatible.PCRs(DebugPCR),
						},
					},
				},
			}

			// Extending PCR 16
			for _, d := range extendstpm2[c.hashalg] {
				pcrExtend := PCRExtend{
					PCRHandle: authHandle,
					Digests: TPMLDigestValues{
						Digests: []TPMTHA{
							{
								HashAlg: c.hashalg,
								Digest:  d.digest,
							},
						},
					},
				}
				if _, err := pcrExtend.Execute(thetpm); err != nil {
					t.Fatalf("failed to extend pcr for test %v", err)
				}
			}

			pcrReadRsp, err := pcrRead.Execute(thetpm)
			if err != nil {
				t.Fatalf("failed to read PCRs")
			}
			postExtendPCR16 := pcrReadRsp.PCRValues.Digests[0].Buffer
			if allZero(postExtendPCR16) {
				t.Errorf("postExtendPCR16 not expected to be all Zero: %v", postExtendPCR16)
			}

			// Resetting PCR 16
			pcrReset := PCRReset{
				PCRHandle: authHandle,
			}
			if _, err := pcrReset.Execute(thetpm); err != nil {
				t.Fatalf("pcrReset failed: %v", err)
			}
			if pcrReadRsp, err = pcrRead.Execute(thetpm); err != nil {
				t.Fatalf("failed to read PCRs")
			}
			postResetPCR16 := pcrReadRsp.PCRValues.Digests[0].Buffer

			if !allZero(postResetPCR16) {
				t.Errorf("postResetPCR16 expected to be all Zero: %v", postExtendPCR16)
			}
		})
	}
}

func TestPCREvent(t *testing.T) {
	thetpm, err := simulator.OpenSimulator()
	if err != nil {
		t.Fatalf("could not connect to TPM simulator: %v", err)
	}
	defer thetpm.Close()

	cases := []struct {
		name    string
		hashalg TPMAlgID
	}{
		{"SHA1", TPMAlgSHA1},
		{"SHA256", TPMAlgSHA256},
		{"SHA384", TPMAlgSHA384},
	}

	// Extend every SRTM PCR with TPM2_PCR_Event
	for _, c := range cases {
		t.Run(c.name, func(t *testing.T) {
			for i := 0; i < 17; i++ {
				t.Run(fmt.Sprintf("PCR%02d", i), func(t *testing.T) {
					pcrRead := PCRRead{
						PCRSelectionIn: TPMLPCRSelection{
							PCRSelections: []TPMSPCRSelection{
								{
									Hash:      c.hashalg,
									PCRSelect: PCClientCompatible.PCRs(20),
								},
							},
						},
					}

					pcrEvent := PCREvent{
						PCRHandle: TPMHandle(i),
						EventData: TPM2BEvent{Buffer: []byte("hello")},
					}
					if _, err := pcrEvent.Execute(thetpm); err != nil {
						t.Fatalf("failed to extend pcr for test %v", err)
					}

					pcrReadRsp, err := pcrRead.Execute(thetpm)
					if err != nil {
						t.Fatalf("failed to read PCRs")
					}
					postExtendPCR16 := pcrReadRsp.PCRValues.Digests[0].Buffer
					if allZero(postExtendPCR16) {
						t.Errorf("postExtendPCR16 not expected to be all Zero: %v", postExtendPCR16)
					}
				})
			}
		})
	}
}