-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathauth.go
288 lines (238 loc) · 8.4 KB
/
auth.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// Copyright 2019 Canonical Ltd.
// Licensed under the LGPLv3 with static-linking exception.
// See LICENCE file for details.
package tpm2
import (
"bytes"
"crypto/hmac"
"errors"
"fmt"
"hash"
)
func trimAuthValue(value []byte) []byte {
return bytes.TrimRight(value, "\x00")
}
type sessionParam struct {
Session SessionContext // The session instance used for this session parameter
AssociatedResource ResourceContext // The resource associated with an authorization
IsPassword bool // Whether the command auth will contain a password
IncludeAuthValue bool // Whether the authorization value of associatedResource is included in the HMAC key
NonceCaller Nonce
DecryptNonce Nonce
EncryptNonce Nonce
}
func newExtraSessionParam(session SessionContext) (*sessionParam, error) {
if session.Params().HashAlg == HashAlgorithmNull || session.State() == nil {
return nil, errors.New("limited context or flushed session")
}
if session.Handle().Type() != HandleTypeHMACSession {
return nil, errors.New("invalid session type")
}
return &sessionParam{Session: session}, nil
}
func newSessionParamForAuth(session SessionContext, resource ResourceContext) (*sessionParam, error) {
if session.Handle() != HandlePW && (session.Params().HashAlg == HashAlgorithmNull || session.State() == nil) {
return nil, errors.New("invalid context for session: limited context or flushed session")
}
s := &sessionParam{
Session: session,
AssociatedResource: resource}
switch {
case s.Session.Handle() == HandlePW:
// Passphrase session
s.IsPassword = true
case s.Session.Handle().Type() == HandleTypePolicySession:
// A policy session. Include the auth value of the associated context
// if the session includes a TPM2_PolicyAuthValue assertion.
if s.Session.State().NeedsPassword && s.Session.State().NeedsAuthValue {
return nil, errors.New("invalid session context state")
}
s.IsPassword = s.Session.State().NeedsPassword
s.IncludeAuthValue = s.Session.State().NeedsAuthValue
case s.Session.Params().IsBound:
// A bound HMAC session. Include the auth value of the associated
// context only if it is not the bind entity.
bindName := computeBindName(s.AssociatedResource.Name(), trimAuthValue(s.AssociatedResource.AuthValue()))
s.IncludeAuthValue = !bytes.Equal(bindName, s.Session.Params().BoundEntity)
default:
// A non-bound HMAC session. Include the auth value of the associated
// context in the HMAC key
s.IncludeAuthValue = true
}
return s, nil
}
func (s *sessionParam) IsAuth() bool {
return s.AssociatedResource != nil
}
func (s *sessionParam) ComputeSessionHMACKey() []byte {
var key []byte
key = append(key, s.Session.Params().SessionKey...)
if s.IncludeAuthValue {
key = append(key, trimAuthValue(s.AssociatedResource.AuthValue())...)
}
return key
}
func (s *sessionParam) computeHMAC(pHash []byte, nonceNewer, nonceOlder, nonceDecrypt, nonceEncrypt Nonce, attrs SessionAttributes) ([]byte, bool) {
key := s.ComputeSessionHMACKey()
h := hmac.New(func() hash.Hash { return s.Session.Params().HashAlg.NewHash() }, key)
h.Write(pHash)
h.Write(nonceNewer)
h.Write(nonceOlder)
h.Write(nonceDecrypt)
h.Write(nonceEncrypt)
h.Write([]byte{uint8(attrs)})
return h.Sum(nil), len(key) > 0
}
func (s *sessionParam) ComputeCommandHMAC(commandCode CommandCode, commandHandles []Name, cpBytes []byte) []byte {
cpHash := cryptComputeCpHash(s.Session.Params().HashAlg, commandCode, commandHandles, cpBytes)
h, _ := s.computeHMAC(cpHash, s.NonceCaller, s.Session.State().NonceTPM, s.DecryptNonce, s.EncryptNonce, s.Session.Attrs())
return h
}
func (s *sessionParam) ComputeResponseHMAC(resp AuthResponse, commandCode CommandCode, rpBytes []byte) ([]byte, bool) {
rpHash := cryptComputeRpHash(s.Session.Params().HashAlg, ResponseSuccess, commandCode, rpBytes)
return s.computeHMAC(rpHash, s.Session.State().NonceTPM, s.NonceCaller, nil, nil, resp.SessionAttributes)
}
func (s *sessionParam) BuildCommandAuth(commandCode CommandCode, commandHandles []Name, cpBytes []byte) *AuthCommand {
var hmac []byte
if s.IsPassword {
hmac = s.AssociatedResource.AuthValue()
} else {
hmac = s.ComputeCommandHMAC(commandCode, commandHandles, cpBytes)
}
return &AuthCommand{
SessionHandle: s.Session.Handle(),
Nonce: s.NonceCaller,
SessionAttributes: s.Session.Attrs(),
HMAC: hmac}
}
func (s *sessionParam) ProcessResponseAuth(resp AuthResponse, commandCode CommandCode, rpBytes []byte) error {
state := s.Session.State()
state.NonceTPM = resp.Nonce
state.IsAudit = resp.SessionAttributes&AttrAudit > 0
state.IsExclusive = resp.SessionAttributes&AttrAuditExclusive > 0
state.NeedsPassword = false
state.NeedsAuthValue = false
if s.IsPassword {
if len(resp.HMAC) != 0 {
return errors.New("unexpected HMAC")
}
return nil
}
hmac, hmacRequired := s.ComputeResponseHMAC(resp, commandCode, rpBytes)
if (hmacRequired || len(resp.HMAC) > 0) && !bytes.Equal(hmac, resp.HMAC) {
return fmt.Errorf("incorrect HMAC (expected: %x, got: %x)", hmac, resp.HMAC)
}
return nil
}
func computeBindName(name Name, auth Auth) Name {
if len(auth) > len(name) {
auth = auth[0:len(name)]
}
r := make(Name, len(name))
copy(r, name)
j := 0
for i := len(name) - len(auth); i < len(name); i++ {
r[i] ^= auth[j]
j++
}
return r
}
type sessionParams struct {
CommandCode CommandCode
Sessions []*sessionParam
EncryptSessionIndex int
DecryptSessionIndex int
}
func newSessionParams() *sessionParams {
return &sessionParams{
EncryptSessionIndex: -1,
DecryptSessionIndex: -1}
}
func (p *sessionParams) append(s *sessionParam) error {
if len(p.Sessions) >= 3 {
return errors.New("too many session parameters")
}
if p.EncryptSessionIndex == -1 && s.Session.Attrs()&AttrResponseEncrypt > 0 {
p.EncryptSessionIndex = len(p.Sessions)
}
if p.DecryptSessionIndex == -1 && s.Session.Attrs()&AttrCommandEncrypt > 0 {
p.DecryptSessionIndex = len(p.Sessions)
}
p.Sessions = append(p.Sessions, s)
return nil
}
func (p *sessionParams) AppendSessionForResource(session SessionContext, resource ResourceContext) error {
s, err := newSessionParamForAuth(session, resource)
if err != nil {
return err
}
return p.append(s)
}
func (p *sessionParams) AppendExtraSessions(sessions ...SessionContext) error {
for i, session := range sessions {
if session == nil {
continue
}
s, err := newExtraSessionParam(session)
if err != nil {
return fmt.Errorf("cannot handle session context at index %d: %v", i, err)
}
if err := p.append(s); err != nil {
return err
}
}
return nil
}
func (p *sessionParams) ComputeCallerNonces() error {
for _, s := range p.Sessions {
if s.Session.Params().HashAlg == HashAlgorithmNull {
continue
}
s.NonceCaller = make(Nonce, s.Session.Params().HashAlg.Size())
if err := cryptComputeNonce(s.NonceCaller); err != nil {
return fmt.Errorf("cannot compute new caller nonce: %v", err)
}
}
return nil
}
func (p *sessionParams) BuildCommandAuthArea(commandCode CommandCode, commandHandles []Name, cpBytes []byte) ([]AuthCommand, error) {
p.CommandCode = commandCode
if err := p.ComputeCallerNonces(); err != nil {
return nil, fmt.Errorf("cannot compute caller nonces: %v", err)
}
if err := p.EncryptCommandParameter(cpBytes); err != nil {
return nil, fmt.Errorf("cannot encrypt first command parameter: %v", err)
}
p.ComputeEncryptNonce()
var area []AuthCommand
for _, s := range p.Sessions {
a := s.BuildCommandAuth(p.CommandCode, commandHandles, cpBytes)
area = append(area, *a)
}
return area, nil
}
func (p *sessionParams) InvalidateSessionContexts(authResponses []AuthResponse) {
for i, resp := range authResponses {
session := p.Sessions[i].Session
if resp.SessionAttributes&AttrContinueSession != 0 {
continue
}
session.Dispose()
}
}
func (p *sessionParams) ProcessResponseAuthArea(authResponses []AuthResponse, rpBytes []byte) error {
defer p.InvalidateSessionContexts(authResponses)
if len(authResponses) != len(p.Sessions) {
return fmt.Errorf("unexpected number of response auths (got %d, expected %d)",
len(authResponses), len(p.Sessions))
}
for i, resp := range authResponses {
if err := p.Sessions[i].ProcessResponseAuth(resp, p.CommandCode, rpBytes); err != nil {
return &InvalidAuthResponseError{i + 1, err.Error()}
}
}
if err := p.DecryptResponseParameter(rpBytes); err != nil {
return fmt.Errorf("cannot decrypt first response parameter: %v", err)
}
return nil
}