-
Notifications
You must be signed in to change notification settings - Fork 26
/
manager.go
162 lines (133 loc) · 3.67 KB
/
manager.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
package yubihsm
import (
"bytes"
"errors"
"log"
"sync"
"time"
"github.com/certusone/yubihsm-go/commands"
"github.com/certusone/yubihsm-go/connector"
"github.com/certusone/yubihsm-go/securechannel"
)
type (
// SessionManager manages a pool of authenticated secure sessions with a YubiHSM2
SessionManager struct {
session *securechannel.SecureChannel
lock sync.Mutex
connector connector.Connector
authKeyID uint16
password string
creationWait sync.WaitGroup
destroyed bool
keepAlive *time.Timer
swapping bool
}
)
var (
echoPayload = []byte("keepalive")
)
const (
pingInterval = 15 * time.Second
)
// NewSessionManager creates a new instance of the SessionManager with poolSize connections.
// Wait on channel Connected with a timeout to wait for active connections to be ready.
func NewSessionManager(connector connector.Connector, authKeyID uint16, password string) (*SessionManager, error) {
manager := &SessionManager{
connector: connector,
authKeyID: authKeyID,
password: password,
destroyed: false,
}
err := manager.swapSession()
if err != nil {
return nil, err
}
manager.keepAlive = time.NewTimer(pingInterval)
go manager.pingRoutine()
return manager, err
}
func (s *SessionManager) pingRoutine() {
for range s.keepAlive.C {
command, _ := commands.CreateEchoCommand(echoPayload)
resp, err := s.SendEncryptedCommand(command)
if err == nil {
parsedResp, matched := resp.(*commands.EchoResponse)
if !matched {
err = errors.New("invalid response type")
}
if !bytes.Equal(parsedResp.Data, echoPayload) {
err = errors.New("echoed data is invalid")
}
} else {
// Session seems to be dead - reconnect and swap
err = s.swapSession()
if err != nil {
log.Printf("swapping dead session failed; err=%v", err)
}
}
s.keepAlive.Reset(pingInterval)
}
}
func (s *SessionManager) swapSession() error {
// Lock swapping process
s.swapping = true
defer func() { s.swapping = false }()
newSession, err := securechannel.NewSecureChannel(s.connector, s.authKeyID, s.password)
if err != nil {
return err
}
err = newSession.Authenticate()
if err != nil {
return err
}
s.lock.Lock()
defer s.lock.Unlock()
// Close old session
if s.session != nil {
go s.session.Close()
}
// Replace primary session
s.session = newSession
return nil
}
func (s *SessionManager) checkSessionHealth() {
if s.session.Counter >= securechannel.MaxMessagesPerSession*0.9 && !s.swapping {
go s.swapSession()
}
}
// SendEncryptedCommand sends an encrypted & authenticated command to the HSM
// and returns the decrypted and parsed response.
func (s *SessionManager) SendEncryptedCommand(c *commands.CommandMessage) (commands.Response, error) {
s.lock.Lock()
defer s.lock.Unlock()
// Check session health after executing the command
defer s.checkSessionHealth()
if s.destroyed {
return nil, errors.New("sessionmanager has already been destroyed")
}
if s.session == nil {
return nil, errors.New("no session available")
}
return s.session.SendEncryptedCommand(c)
}
// SendCommand sends an unauthenticated command to the HSM and returns the parsed response
func (s *SessionManager) SendCommand(c *commands.CommandMessage) (commands.Response, error) {
s.lock.Lock()
defer s.lock.Unlock()
if s.destroyed {
return nil, errors.New("sessionmanager has already been destroyed")
}
if s.session == nil {
return nil, errors.New("no session available")
}
return s.session.SendCommand(c)
}
// Destroy closes all connections in the pool.
// SessionManager instances can't be reused.
func (s *SessionManager) Destroy() {
s.lock.Lock()
defer s.lock.Unlock()
s.keepAlive.Stop()
s.session.Close()
s.destroyed = true
}