forked from 99designs/keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keychain.go
301 lines (243 loc) · 7.33 KB
/
keychain.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
289
290
291
292
293
294
295
296
297
298
299
300
301
//go:build darwin && cgo
// +build darwin,cgo
package keyring
import (
"errors"
"fmt"
gokeychain "github.com/99designs/go-keychain"
)
type keychain struct {
path string
service string
passwordFunc PromptFunc
isSynchronizable bool
isAccessibleWhenUnlocked bool
isTrusted bool
}
func init() {
supportedBackends[KeychainBackend] = opener(func(cfg Config) (Keyring, error) {
kc := &keychain{
service: cfg.ServiceName,
passwordFunc: cfg.KeychainPasswordFunc,
// Set the isAccessibleWhenUnlocked to the boolean value of
// KeychainAccessibleWhenUnlocked is a shorthand for setting the accessibility value.
// See: https://developer.apple.com/documentation/security/ksecattraccessiblewhenunlocked
isAccessibleWhenUnlocked: cfg.KeychainAccessibleWhenUnlocked,
}
if cfg.KeychainName != "" {
kc.path = cfg.KeychainName + ".keychain"
}
if cfg.KeychainTrustApplication {
kc.isTrusted = true
}
return kc, nil
})
}
func (k *keychain) Get(key string) (Item, error) {
query := gokeychain.NewItem()
query.SetSecClass(gokeychain.SecClassGenericPassword)
query.SetService(k.service)
query.SetAccount(key)
query.SetMatchLimit(gokeychain.MatchLimitOne)
query.SetReturnAttributes(true)
query.SetReturnData(true)
if k.path != "" {
// When we are querying, we don't create by default
query.SetMatchSearchList(gokeychain.NewWithPath(k.path))
}
debugf("Querying keychain for service=%q, account=%q, keychain=%q", k.service, key, k.path)
results, err := gokeychain.QueryItem(query)
if err == gokeychain.ErrorItemNotFound || len(results) == 0 {
debugf("No results found")
return Item{}, ErrKeyNotFound
}
if err != nil {
debugf("Error: %#v", err)
return Item{}, err
}
item := Item{
Key: key,
Data: results[0].Data,
Label: results[0].Label,
Description: results[0].Description,
}
debugf("Found item %q", results[0].Label)
return item, nil
}
func (k *keychain) GetMetadata(key string) (Metadata, error) {
query := gokeychain.NewItem()
query.SetSecClass(gokeychain.SecClassGenericPassword)
query.SetService(k.service)
query.SetAccount(key)
query.SetMatchLimit(gokeychain.MatchLimitOne)
query.SetReturnAttributes(true)
query.SetReturnData(false)
query.SetReturnRef(true)
debugf("Querying keychain for metadata of service=%q, account=%q, keychain=%q", k.service, key, k.path)
results, err := gokeychain.QueryItem(query)
if err == gokeychain.ErrorItemNotFound || len(results) == 0 {
debugf("No results found")
return Metadata{}, ErrKeyNotFound
} else if err != nil {
debugf("Error: %#v", err)
return Metadata{}, err
}
md := Metadata{
Item: &Item{
Key: key,
Label: results[0].Label,
Description: results[0].Description,
},
ModificationTime: results[0].ModificationDate,
}
debugf("Found metadata for %q", md.Item.Label)
return md, nil
}
func (k *keychain) updateItem(kc gokeychain.Keychain, kcItem gokeychain.Item, account string) error {
queryItem := gokeychain.NewItem()
queryItem.SetSecClass(gokeychain.SecClassGenericPassword)
queryItem.SetService(k.service)
queryItem.SetAccount(account)
queryItem.SetMatchLimit(gokeychain.MatchLimitOne)
queryItem.SetReturnAttributes(true)
if k.path != "" {
queryItem.SetMatchSearchList(kc)
}
results, err := gokeychain.QueryItem(queryItem)
if err != nil {
return fmt.Errorf("Failed to query keychain: %v", err)
}
if len(results) == 0 {
return errors.New("no results")
}
// Don't call SetAccess() as this will cause multiple prompts on update, even when we are not updating the AccessList
kcItem.SetAccess(nil)
if err := gokeychain.UpdateItem(queryItem, kcItem); err != nil {
return fmt.Errorf("Failed to update item in keychain: %v", err)
}
return nil
}
func (k *keychain) Set(item Item) error {
var kc gokeychain.Keychain
// when we are setting a value, we create or open
if k.path != "" {
var err error
kc, err = k.createOrOpen()
if err != nil {
return err
}
}
kcItem := gokeychain.NewItem()
kcItem.SetSecClass(gokeychain.SecClassGenericPassword)
kcItem.SetService(k.service)
kcItem.SetAccount(item.Key)
kcItem.SetLabel(item.Label)
kcItem.SetDescription(item.Description)
kcItem.SetData(item.Data)
if k.path != "" {
kcItem.UseKeychain(kc)
}
if k.isSynchronizable && !item.KeychainNotSynchronizable {
kcItem.SetSynchronizable(gokeychain.SynchronizableYes)
}
if k.isAccessibleWhenUnlocked {
kcItem.SetAccessible(gokeychain.AccessibleWhenUnlocked)
}
isTrusted := k.isTrusted && !item.KeychainNotTrustApplication
if isTrusted {
debugf("Keychain item trusts keyring")
kcItem.SetAccess(&gokeychain.Access{
Label: item.Label,
TrustedApplications: nil,
})
} else {
debugf("Keychain item doesn't trust keyring")
kcItem.SetAccess(&gokeychain.Access{
Label: item.Label,
TrustedApplications: []string{},
})
}
debugf("Adding service=%q, label=%q, account=%q, trusted=%v to osx keychain %q", k.service, item.Label, item.Key, isTrusted, k.path)
err := gokeychain.AddItem(kcItem)
if err == gokeychain.ErrorDuplicateItem {
debugf("Item already exists, updating")
err = k.updateItem(kc, kcItem, item.Key)
}
if err != nil {
return err
}
return nil
}
func (k *keychain) Remove(key string) error {
item := gokeychain.NewItem()
item.SetSecClass(gokeychain.SecClassGenericPassword)
item.SetService(k.service)
item.SetAccount(key)
if k.path != "" {
kc := gokeychain.NewWithPath(k.path)
if err := kc.Status(); err != nil {
if err == gokeychain.ErrorNoSuchKeychain {
return ErrKeyNotFound
}
return err
}
item.SetMatchSearchList(kc)
}
debugf("Removing keychain item service=%q, account=%q, keychain %q", k.service, key, k.path)
err := gokeychain.DeleteItem(item)
if err == gokeychain.ErrorItemNotFound {
return ErrKeyNotFound
}
return err
}
func (k *keychain) Keys() ([]string, error) {
query := gokeychain.NewItem()
query.SetSecClass(gokeychain.SecClassGenericPassword)
query.SetService(k.service)
query.SetMatchLimit(gokeychain.MatchLimitAll)
query.SetReturnAttributes(true)
if k.path != "" {
kc := gokeychain.NewWithPath(k.path)
if err := kc.Status(); err != nil {
if err == gokeychain.ErrorNoSuchKeychain {
return []string{}, nil
}
return nil, err
}
query.SetMatchSearchList(kc)
}
debugf("Querying keychain for service=%q, keychain=%q", k.service, k.path)
results, err := gokeychain.QueryItem(query)
if err != nil {
return nil, err
}
debugf("Found %d results", len(results))
accountNames := make([]string, len(results))
for idx, r := range results {
accountNames[idx] = r.Account
}
return accountNames, nil
}
func (k *keychain) createOrOpen() (gokeychain.Keychain, error) {
kc := gokeychain.NewWithPath(k.path)
debugf("Checking keychain status")
err := kc.Status()
if err == nil {
debugf("Keychain status returned nil, keychain exists")
return kc, nil
}
debugf("Keychain status returned error: %v", err)
if err != gokeychain.ErrorNoSuchKeychain {
return gokeychain.Keychain{}, err
}
if k.passwordFunc == nil {
debugf("Creating keychain %s with prompt", k.path)
return gokeychain.NewKeychainWithPrompt(k.path)
}
passphrase, err := k.passwordFunc("Enter passphrase for keychain")
if err != nil {
return gokeychain.Keychain{}, err
}
debugf("Creating keychain %s with provided password", k.path)
return gokeychain.NewKeychain(k.path, passphrase)
}