forked from canonical/secboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport_test.go
184 lines (155 loc) · 5.3 KB
/
export_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
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package secboot
import (
"crypto/ecdsa"
"os"
"github.com/canonical/go-tpm2"
)
// Export constants for testing
const (
CurrentMetadataVersion = currentMetadataVersion
LockNVHandle = lockNVHandle
SrkTemplateHandle = srkTemplateHandle
)
// Export variables and unexported functions for testing
var (
ComputeDynamicPolicy = computeDynamicPolicy
CreatePcrPolicyCounter = createPcrPolicyCounter
ComputePcrPolicyCounterAuthPolicies = computePcrPolicyCounterAuthPolicies
ComputePcrPolicyRefFromCounterContext = computePcrPolicyRefFromCounterContext
ComputePcrPolicyRefFromCounterName = computePcrPolicyRefFromCounterName
ComputePolicyORData = computePolicyORData
ComputeSnapModelDigest = computeSnapModelDigest
ComputeStaticPolicy = computeStaticPolicy
CreateTPMPublicAreaForECDSAKey = createTPMPublicAreaForECDSAKey
ExecutePolicySession = executePolicySession
IncrementPcrPolicyCounter = incrementPcrPolicyCounter
IsDynamicPolicyDataError = isDynamicPolicyDataError
IsStaticPolicyDataError = isStaticPolicyDataError
LockNVIndex1Attrs = lockNVIndex1Attrs
PerformPinChange = performPinChange
ReadPcrPolicyCounter = readPcrPolicyCounter
)
// Alias some unexported types for testing. These are required in order to pass these between functions in tests, or to access
// unexported members of some unexported types.
type DynamicPolicyData = dynamicPolicyData
func (d *DynamicPolicyData) PCRSelection() tpm2.PCRSelectionList {
return d.pcrSelection
}
func (d *DynamicPolicyData) PCROrData() policyOrDataTree {
return d.pcrOrData
}
func (d *DynamicPolicyData) PolicyCount() uint64 {
return d.policyCount
}
func (d *DynamicPolicyData) SetPolicyCount(c uint64) {
d.policyCount = c
}
func (d *DynamicPolicyData) AuthorizedPolicy() tpm2.Digest {
return d.authorizedPolicy
}
func (d *DynamicPolicyData) AuthorizedPolicySignature() *tpm2.Signature {
return d.authorizedPolicySignature
}
type StaticPolicyData = staticPolicyData
func (d *StaticPolicyData) AuthPublicKey() *tpm2.Public {
return d.authPublicKey
}
func (d *StaticPolicyData) PcrPolicyCounterHandle() tpm2.Handle {
return d.pcrPolicyCounterHandle
}
func (d *StaticPolicyData) SetPcrPolicyCounterHandle(h tpm2.Handle) {
d.pcrPolicyCounterHandle = h
}
func (d *StaticPolicyData) V0PinIndexAuthPolicies() tpm2.DigestList {
return d.v0PinIndexAuthPolicies
}
// Export some helpers for testing.
type MockPolicyPCRParam struct {
PCR int
Alg tpm2.HashAlgorithmId
Digests tpm2.DigestList
}
// MakeMockPolicyPCRValuesFull computes a slice of tpm2.PCRValues for every combination of supplied PCR values.
func MakeMockPolicyPCRValuesFull(params []MockPolicyPCRParam) (out []tpm2.PCRValues) {
indices := make([]int, len(params))
advanceIndices := func() bool {
for i := range params {
indices[i]++
if indices[i] < len(params[i].Digests) {
break
}
indices[i] = 0
if i == len(params)-1 {
return false
}
}
return true
}
for {
v := make(tpm2.PCRValues)
for i := range params {
v.SetValue(params[i].Alg, params[i].PCR, params[i].Digests[indices[i]])
}
out = append(out, v)
if len(params) == 0 {
break
}
if !advanceIndices() {
break
}
}
return
}
func MockLUKS2Activate(fn func(string, string, []byte) error) (restore func()) {
origActivate := luks2Activate
luks2Activate = fn
return func() {
luks2Activate = origActivate
}
}
func MockLUKS2Deactivate(fn func(string) error) (restore func()) {
origDeactivate := luks2Deactivate
luks2Deactivate = fn
return func() {
luks2Deactivate = origDeactivate
}
}
func NewDynamicPolicyComputeParams(key *ecdsa.PrivateKey, signAlg tpm2.HashAlgorithmId, pcrs tpm2.PCRSelectionList,
pcrDigests tpm2.DigestList, policyCounterName tpm2.Name, policyCount uint64) *dynamicPolicyComputeParams {
return &dynamicPolicyComputeParams{
key: key,
signAlg: signAlg,
pcrs: pcrs,
pcrDigests: pcrDigests,
policyCounterName: policyCounterName,
policyCount: policyCount}
}
func NewStaticPolicyComputeParams(key *tpm2.Public, pcrPolicyCounterPub *tpm2.NVPublic) *staticPolicyComputeParams {
return &staticPolicyComputeParams{key: key, pcrPolicyCounterPub: pcrPolicyCounterPub}
}
func ValidateKeyDataFile(tpm *tpm2.TPMContext, keyFile string, authPrivateKey TPMPolicyAuthKey, session tpm2.SessionContext) error {
kf, err := os.Open(keyFile)
if err != nil {
return err
}
defer kf.Close()
_, _, _, err = decodeAndValidateKeyData(tpm, kf, authPrivateKey, session)
return err
}