-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtickets.go
222 lines (190 loc) · 5.9 KB
/
tickets.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
// Copyright (C) 2017. See AUTHORS.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tongsuogo
// #include "shim.h"
import "C"
import (
"os"
"unsafe"
"github.com/tongsuo-project/tongsuo-go-sdk/crypto"
)
const (
KeyNameSize = 16
)
// TicketCipherCtx describes the cipher that will be used by the ticket store
// for encrypting the tickets. Engine may be nil if no engine is desired.
type TicketCipherCtx struct {
Cipher *crypto.Cipher
Engine *crypto.Engine
}
// TicketDigestCtx describes the digest that will be used by the ticket store
// to authenticate the data. Engine may be nil if no engine is desired.
type TicketDigestCtx struct {
Digest *crypto.Digest
Engine *crypto.Engine
}
// TicketName is an identifier for the key material for a ticket.
type TicketName [KeyNameSize]byte
// TicketKey is the key material for a ticket. If this is lost, forward secrecy
// is lost as it allows decrypting TLS sessions retroactively.
type TicketKey struct {
Name TicketName
CipherKey []byte
HMACKey []byte
IV []byte
}
// TicketKeyManager is a manager for TicketKeys. It allows one to control the
// lifetime of tickets, causing renewals and expirations for keys that are
// created. Calls to the manager are serialized.
type TicketKeyManager interface {
// New should create a brand new TicketKey with a new name.
New() *TicketKey
// Current should return a key that is still valid.
Current() *TicketKey
// Lookup should return a key with the given name, or nil if no name
// exists.
Lookup(name TicketName) *TicketKey
// Expired should return if the key with the given name is expired and
// should not be used any more.
Expired(name TicketName) bool
// ShouldRenew should return if the key is still ok to use for the current
// session, but we should send a new key for the client.
ShouldRenew(name TicketName) bool
}
// TicketStore descibes the encryption and authentication methods the tickets
// will use along with a key manager for generating and keeping track of the
// secrets.
type TicketStore struct {
CipherCtx TicketCipherCtx
DigestCtx TicketDigestCtx
Keys TicketKeyManager
}
func (t *TicketStore) cipherEngine() *C.ENGINE {
if t.CipherCtx.Engine == nil {
return nil
}
return (*C.ENGINE)(t.CipherCtx.Engine.Engine())
}
func (t *TicketStore) digestEngine() *C.ENGINE {
if t.DigestCtx.Engine == nil {
return nil
}
return (*C.ENGINE)(t.DigestCtx.Engine.Engine())
}
const (
// instruct to do a handshake
ticketRespRequireHandshake = 0
// crypto context is set up correctly
ticketRespSessionOk = 1
// crypto context is ok, but the ticket should be reissued
ticketRespRenewSession = 2
// we had a problem that shouldn't fall back to doing a handshake
ticketRespError = -1
// asked to create session crypto context
ticketReqNewSession = 1
// asked to load crypto context for a previous session
ticketReqLookupSession = 0
)
//export go_ticket_key_cb_thunk
func go_ticket_key_cb_thunk(pctx unsafe.Pointer, keyName *C.uchar, cctx *C.EVP_CIPHER_CTX, hctx *C.HMAC_CTX, enc C.int,
) C.int {
// no panic's allowed. it's super hard to guarantee any state at this point
// so just abort everything.
defer func() {
if err := recover(); err != nil {
// logger.Critf("openssl: ticket key callback panic'd: %v", err)
os.Exit(1)
}
}()
ctx := (*Ctx)(pctx)
store := ctx.ticketStore
if store == nil {
// should this be an error condition? it doesn't make sense
// to be called if we don't have a store I believe, but that's probably
// not worth aborting the handshake which is what I believe returning
// an error would do.
return ticketRespRequireHandshake
}
ctx.ticketStoreMu.Lock()
defer ctx.ticketStoreMu.Unlock()
switch enc {
case ticketReqNewSession:
key := store.Keys.Current()
if key == nil {
key = store.Keys.New()
if key == nil {
return ticketRespRequireHandshake
}
}
C.memcpy(
unsafe.Pointer(keyName),
unsafe.Pointer(&key.Name[0]),
KeyNameSize)
C.EVP_EncryptInit_ex(
cctx,
(*C.EVP_CIPHER)(store.CipherCtx.Cipher.Ptr()),
store.cipherEngine(),
(*C.uchar)(&key.CipherKey[0]),
(*C.uchar)(&key.IV[0]))
C.HMAC_Init_ex(
hctx,
unsafe.Pointer(&key.HMACKey[0]),
C.int(len(key.HMACKey)),
(*C.EVP_MD)(store.DigestCtx.Digest.Ptr()),
store.digestEngine())
return ticketRespSessionOk
case ticketReqLookupSession:
var name TicketName
C.memcpy(
unsafe.Pointer(&name[0]),
unsafe.Pointer(keyName),
KeyNameSize)
key := store.Keys.Lookup(name)
if key == nil {
return ticketRespRequireHandshake
}
if store.Keys.Expired(name) {
return ticketRespRequireHandshake
}
C.EVP_DecryptInit_ex(
cctx,
(*C.EVP_CIPHER)(store.CipherCtx.Cipher.Ptr()),
store.cipherEngine(),
(*C.uchar)(&key.CipherKey[0]),
(*C.uchar)(&key.IV[0]))
C.HMAC_Init_ex(
hctx,
unsafe.Pointer(&key.HMACKey[0]),
C.int(len(key.HMACKey)),
(*C.EVP_MD)(store.DigestCtx.Digest.Ptr()),
store.digestEngine())
if store.Keys.ShouldRenew(name) {
return ticketRespRenewSession
}
return ticketRespSessionOk
default:
return ticketRespError
}
}
// SetTicketStore sets the ticket store for the context so that clients can do
// ticket based session resumption. If the store is nil, the
func (c *Ctx) SetTicketStore(store *TicketStore) {
c.ticketStore = store
if store == nil {
C.X_SSL_CTX_set_tlsext_ticket_key_cb(c.ctx, nil)
} else {
C.X_SSL_CTX_set_tlsext_ticket_key_cb(c.ctx,
(*[0]byte)(C.X_SSL_CTX_ticket_key_cb))
}
}