-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
ocr2.go
189 lines (164 loc) · 4.22 KB
/
ocr2.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
package keystore
import (
"fmt"
"github.com/pkg/errors"
"github.com/smartcontractkit/chainlink/v2/core/services/keystore/chaintype"
"github.com/smartcontractkit/chainlink/v2/core/services/keystore/keys/ocr2key"
)
//go:generate mockery --quiet --name OCR2 --output mocks/ --case=underscore
type OCR2 interface {
Get(id string) (ocr2key.KeyBundle, error)
GetAll() ([]ocr2key.KeyBundle, error)
GetAllOfType(chaintype.ChainType) ([]ocr2key.KeyBundle, error)
Create(chaintype.ChainType) (ocr2key.KeyBundle, error)
Add(key ocr2key.KeyBundle) error
Delete(id string) error
Import(keyJSON []byte, password string) (ocr2key.KeyBundle, error)
Export(id string, password string) ([]byte, error)
EnsureKeys(enabledChains ...chaintype.ChainType) error
}
type ocr2 struct {
*keyManager
}
var _ OCR2 = ocr2{}
func newOCR2KeyStore(km *keyManager) ocr2 {
return ocr2{
km,
}
}
func (ks ocr2) Get(id string) (ocr2key.KeyBundle, error) {
ks.lock.RLock()
defer ks.lock.RUnlock()
if ks.isLocked() {
return nil, ErrLocked
}
return ks.getByID(id)
}
func (ks ocr2) GetAll() ([]ocr2key.KeyBundle, error) {
keys := []ocr2key.KeyBundle{}
ks.lock.RLock()
defer ks.lock.RUnlock()
if ks.isLocked() {
return keys, ErrLocked
}
for _, key := range ks.keyRing.OCR2 {
keys = append(keys, key)
}
return keys, nil
}
func (ks ocr2) GetAllOfType(chainType chaintype.ChainType) ([]ocr2key.KeyBundle, error) {
keys := []ocr2key.KeyBundle{}
ks.lock.RLock()
defer ks.lock.RUnlock()
if ks.isLocked() {
return keys, ErrLocked
}
return ks.getAllOfType(chainType)
}
func (ks ocr2) Create(chainType chaintype.ChainType) (ocr2key.KeyBundle, error) {
ks.lock.Lock()
defer ks.lock.Unlock()
if ks.isLocked() {
return nil, ErrLocked
}
return ks.create(chainType)
}
func (ks ocr2) Add(key ocr2key.KeyBundle) error {
ks.lock.Lock()
defer ks.lock.Unlock()
if ks.isLocked() {
return ErrLocked
}
if _, found := ks.keyRing.OCR2[key.ID()]; found {
return fmt.Errorf("key with ID %s already exists", key.ID())
}
return ks.safeAddKey(key)
}
func (ks ocr2) Delete(id string) error {
ks.lock.Lock()
defer ks.lock.Unlock()
if ks.isLocked() {
return ErrLocked
}
key, err := ks.getByID(id)
if err != nil {
return err
}
err = ks.safeRemoveKey(key)
return err
}
func (ks ocr2) Import(keyJSON []byte, password string) (ocr2key.KeyBundle, error) {
ks.lock.Lock()
defer ks.lock.Unlock()
if ks.isLocked() {
return nil, ErrLocked
}
key, err := ocr2key.FromEncryptedJSON(keyJSON, password)
if err != nil {
return nil, errors.Wrap(err, "OCRKeyStore#ImportKey failed to decrypt key")
}
if _, found := ks.keyRing.OCR[key.ID()]; found {
return nil, fmt.Errorf("key with ID %s already exists", key.ID())
}
return key, ks.keyManager.safeAddKey(key)
}
func (ks ocr2) Export(id string, password string) ([]byte, error) {
ks.lock.RLock()
defer ks.lock.RUnlock()
if ks.isLocked() {
return nil, ErrLocked
}
key, err := ks.getByID(id)
if err != nil {
return nil, err
}
return ocr2key.ToEncryptedJSON(key, password, ks.scryptParams)
}
func (ks ocr2) EnsureKeys(enabledChains ...chaintype.ChainType) error {
ks.lock.Lock()
defer ks.lock.Unlock()
if ks.isLocked() {
return ErrLocked
}
for _, chainType := range enabledChains {
keys, err := ks.getAllOfType(chainType)
if err != nil {
return err
}
if len(keys) > 0 {
continue
}
created, err := ks.create(chainType)
if err != nil {
return err
}
ks.logger.Infof("Created OCR2 key with ID %s for chain type %s", created.ID(), chainType)
}
return nil
}
func (ks ocr2) getByID(id string) (ocr2key.KeyBundle, error) {
key, found := ks.keyRing.OCR2[id]
if !found {
return nil, fmt.Errorf("unable to find OCR key with id %s", id)
}
return key, nil
}
func (ks ocr2) getAllOfType(chainType chaintype.ChainType) ([]ocr2key.KeyBundle, error) {
keys := []ocr2key.KeyBundle{}
for _, key := range ks.keyRing.OCR2 {
if key.ChainType() == chainType {
keys = append(keys, key)
}
}
return keys, nil
}
func (ks ocr2) create(chainType chaintype.ChainType) (ocr2key.KeyBundle, error) {
if !chaintype.IsSupportedChainType(chainType) {
return nil, chaintype.NewErrInvalidChainType(chainType)
}
key, err := ocr2key.New(chainType)
if err != nil {
return nil, err
}
return key, ks.safeAddKey(key)
}