-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcmds_session_test.go
209 lines (194 loc) · 5.94 KB
/
cmds_session_test.go
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
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package tpm2_test
import (
"bytes"
"crypto/sha256"
"testing"
. "github.com/canonical/go-tpm2"
"github.com/canonical/go-tpm2/testutil"
)
func TestStartAuthSession(t *testing.T) {
tpm, _, closeTPM := testutil.NewTPMContextT(t, testutil.TPMFeatureOwnerHierarchy)
defer closeTPM()
auth := []byte("foo")
primary := createRSASrkForTesting(t, tpm, auth)
defer flushContext(t, tpm, primary)
primaryECC := createECCSrkForTesting(t, tpm, nil)
defer flushContext(t, tpm, primaryECC)
for _, data := range []struct {
desc string
tpmKey ResourceContext
bind ResourceContext
sessionType SessionType
alg HashAlgorithmId
bindAuth []byte
handleType HandleType
errMsg string
}{
{
desc: "HMACUnboundUnsaltedSHA256",
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA256,
handleType: HandleTypeHMACSession,
},
{
desc: "HMACBoundUnsaltedSHA256",
bind: primary,
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA256,
bindAuth: auth,
handleType: HandleTypeHMACSession,
},
{
desc: "HMACUnboundSaltedRSASHA256",
tpmKey: primary,
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA256,
handleType: HandleTypeHMACSession,
},
{
desc: "HMACUnboundSaltedECCSHA256",
tpmKey: primaryECC,
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA256,
handleType: HandleTypeHMACSession,
},
{
desc: "HMACBoundSaltedRSASHA1",
tpmKey: primary,
bind: primary,
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA1,
bindAuth: auth,
handleType: HandleTypeHMACSession,
},
{
desc: "TrialSessionSHA256",
sessionType: SessionTypeTrial,
alg: HashAlgorithmSHA256,
handleType: HandleTypePolicySession,
},
{
desc: "PolicySessionUnboundUnsaltedSHA256",
sessionType: SessionTypePolicy,
alg: HashAlgorithmSHA256,
handleType: HandleTypePolicySession,
},
{
desc: "PolicySessionUnboundSaltedSHA256",
tpmKey: primary,
sessionType: SessionTypePolicy,
alg: HashAlgorithmSHA256,
handleType: HandleTypePolicySession,
},
{
desc: "PolicySessionBoundUnsaltedSHA256",
bind: primary,
sessionType: SessionTypePolicy,
alg: HashAlgorithmSHA256,
bindAuth: auth,
handleType: HandleTypePolicySession,
},
{
desc: "PolicySessionBoundSaltedSHA256",
tpmKey: primary,
bind: primary,
sessionType: SessionTypePolicy,
alg: HashAlgorithmSHA256,
bindAuth: auth,
handleType: HandleTypePolicySession,
},
{
desc: "HMACUnboundUnsaltedInvalidAlg",
sessionType: SessionTypeHMAC,
alg: HashAlgorithmNull,
errMsg: "invalid authHash argument: unsupported digest algorithm or algorithm not linked in to binary (TPM_ALG_NULL)",
},
{
desc: "HMACUnboundSaltedInvalidKey",
tpmKey: tpm.OwnerHandleContext(),
sessionType: SessionTypeHMAC,
alg: HashAlgorithmSHA256,
errMsg: "invalid tpmKey argument: resource context is not an object",
},
} {
t.Run(data.desc, func(t *testing.T) {
sc, err := tpm.StartAuthSession(data.tpmKey, data.bind, data.sessionType, nil, data.alg)
if data.errMsg == "" {
if err != nil {
t.Fatalf("StartAuthSession returned an error: %v", err)
}
defer flushContext(t, tpm, sc)
if sc.Handle().Type() != data.handleType {
t.Errorf("StartAuthSession returned a handle of the wrong type")
}
if sc.Params().HashAlg != data.alg {
t.Errorf("The returned session context has the wrong algorithm (got %v)", sc.Params().HashAlg)
}
if data.bind == nil || data.sessionType != SessionTypeHMAC {
if sc.Params().IsBound {
t.Errorf("The returned session context should not be bound")
}
} else {
if !sc.Params().IsBound {
t.Errorf("The returned session context should be bound")
}
boundEntity := ComputeBindName(data.bind.Name(), data.bindAuth)
if !bytes.Equal(boundEntity, sc.Params().BoundEntity) {
t.Errorf("The returned session context has the wrong bound resource")
}
}
digestSize := data.alg.Size()
sessionKeySize := digestSize
if data.bind == nil && data.tpmKey == nil {
sessionKeySize = 0
}
if len(sc.Params().SessionKey) != sessionKeySize {
t.Errorf("The returned session key has the wrong length (got %d)", len(sc.Params().SessionKey))
}
if len(sc.State().NonceTPM) != int(digestSize) {
t.Errorf("The returned TPM nonce has the wrong length (got %d)", len(sc.State().NonceTPM))
}
} else {
if err == nil {
t.Fatalf("StartAuthSession should have returned an error")
}
if err.Error() != data.errMsg {
t.Errorf("StartAuthSession returned an unexpected error: %v", err)
}
}
})
}
}
func TestPolicyRestart(t *testing.T) {
tpm, _, closeTPM := testutil.NewTPMContextT(t, 0)
defer closeTPM()
sc, err := tpm.StartAuthSession(nil, nil, SessionTypePolicy, nil, HashAlgorithmSHA256)
if err != nil {
t.Fatalf("StartAuthSession failed: %v", err)
}
defer flushContext(t, tpm, sc)
if err := tpm.PolicyPCR(sc, nil,
PCRSelectionList{{Hash: HashAlgorithmSHA256, Select: []int{7}}}); err != nil {
t.Fatalf("PolicyPCR failed: %v", err)
}
digest, err := tpm.PolicyGetDigest(sc)
if err != nil {
t.Fatalf("PolicyGetDigest failed: %v", err)
}
if err := tpm.PolicyRestart(sc); err != nil {
t.Fatalf("PolicyRestart failed: %v", err)
}
restartedDigest, err := tpm.PolicyGetDigest(sc)
if err != nil {
t.Fatalf("PolicyGetDigest failed: %v", err)
}
if bytes.Equal(digest, make(Digest, sha256.Size)) {
t.Errorf("Original digest should not be zero")
}
if !bytes.Equal(restartedDigest, make(Digest, sha256.Size)) {
t.Errorf("Digest wasn't reset to zero")
}
}