forked from zalando/go-keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
secret_service.go
291 lines (244 loc) · 8.08 KB
/
secret_service.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
package ss
import (
"fmt"
"regexp"
"errors"
"github.com/godbus/dbus"
)
const (
serviceName = "org.freedesktop.secrets"
servicePath = "/org/freedesktop/secrets"
serviceInterface = "org.freedesktop.Secret.Service"
collectionInterface = "org.freedesktop.Secret.Collection"
collectionsInterface = "org.freedesktop.Secret.Service.Collections"
itemInterface = "org.freedesktop.Secret.Item"
sessionInterface = "org.freedesktop.Secret.Session"
promptInterface = "org.freedesktop.Secret.Prompt"
loginCollectionAlias = "/org/freedesktop/secrets/aliases/default"
collectionBasePath = "/org/freedesktop/secrets/collection/"
)
const (
// DefaultKeyringName the name of the keyring to use as default
DefaultKeyringName = "login"
)
// Secret defines a org.freedesk.Secret.Item secret struct.
type Secret struct {
Session dbus.ObjectPath
Parameters []byte
Value []byte
ContentType string `dbus:"content_type"`
}
// NewSecret initializes a new Secret.
func NewSecret(session dbus.ObjectPath, secret string) Secret {
return Secret{
Session: session,
Parameters: []byte{},
Value: []byte(secret),
ContentType: "text/plain; charset=utf8",
}
}
// SecretService is an interface for the Secret Service dbus API.
type SecretService struct {
*dbus.Conn
object dbus.BusObject
KeyringName string
}
// NewSecretService inializes a new SecretService object.
func NewSecretService(keyringName string) (*SecretService, error) {
conn, err := dbus.SessionBus()
if err != nil {
return nil, err
}
return &SecretService{
Conn: conn,
object: conn.Object(serviceName, servicePath),
KeyringName: formatKeyringName(keyringName),
}, nil
}
// see https://lists.freedesktop.org/archives/systemd-devel/2013-March/009402.html
func formatKeyringName(name string) string {
re := regexp.MustCompile("[^A-Za-z0-9]")
name = re.ReplaceAllString(name, "_5f")
return name
}
// OpenSession opens a secret service session.
func (s *SecretService) OpenSession() (dbus.BusObject, error) {
var disregard dbus.Variant
var sessionPath dbus.ObjectPath
err := s.object.Call(serviceInterface+".OpenSession", 0, "plain", dbus.MakeVariant("")).Store(&disregard, &sessionPath)
if err != nil {
return nil, err
}
return s.Object(serviceName, sessionPath), nil
}
// CheckCollectionPath accepts dbus path and returns nil if the path is found
// in the collection interface (and can be used).
func (s *SecretService) CheckCollectionPath(path dbus.ObjectPath) error {
obj := s.Conn.Object(serviceName, servicePath)
val, err := obj.GetProperty(collectionsInterface)
if err != nil {
return err
}
paths := val.Value().([]dbus.ObjectPath)
for _, p := range paths {
if p == path {
return nil
}
}
return errors.New("path not found")
}
// GetCollectionForKeyring returns collection from SecretService
func (s *SecretService) GetCollectionForKeyring() (dbus.BusObject, error) {
var collection dbus.BusObject
// Pick requested collection
if len(s.KeyringName) == 0 || s.KeyringName == DefaultKeyringName {
collection = s.GetLoginCollection()
} else {
// Check for customs collections availability
collectionPath := s.GetCollectionPath(s.KeyringName)
err := s.CheckCollectionPath(collectionPath)
if err != nil {
return nil, err
}
// If available
collection = s.GetCollectionByPath(collectionPath)
}
return collection, nil
}
// GetCollectionPath get path of collection by its name
func (s *SecretService) GetCollectionPath(name string) dbus.ObjectPath {
return dbus.ObjectPath(collectionBasePath + name)
}
// GetCollection returns a collection from a name.
func (s *SecretService) GetCollection(name string) dbus.BusObject {
return s.GetCollectionByPath(s.GetCollectionPath(name))
}
// GetCollectionByPath returns a collection from a name.
func (s *SecretService) GetCollectionByPath(path dbus.ObjectPath) dbus.BusObject {
return s.Object(serviceName, path)
}
// GetLoginCollection decides and returns the dbus collection to be used for login.
func (s *SecretService) GetLoginCollection() dbus.BusObject {
path := dbus.ObjectPath(collectionBasePath + "login")
if err := s.CheckCollectionPath(path); err != nil {
path = dbus.ObjectPath(loginCollectionAlias)
}
return s.Object(serviceName, path)
}
// Unlock unlocks a collection.
func (s *SecretService) Unlock(collection dbus.ObjectPath) error {
var unlocked []dbus.ObjectPath
var prompt dbus.ObjectPath
err := s.object.Call(serviceInterface+".Unlock", 0, []dbus.ObjectPath{collection}).Store(&unlocked, &prompt)
if err != nil {
return err
}
_, v, err := s.handlePrompt(prompt)
if err != nil {
return err
}
collections := v.Value()
switch c := collections.(type) {
case []dbus.ObjectPath:
unlocked = append(unlocked, c...)
}
if len(unlocked) != 1 || (collection != loginCollectionAlias && unlocked[0] != collection) {
return fmt.Errorf("failed to unlock correct collection '%v'", collection)
}
return nil
}
// Close closes a secret service dbus session.
func (s *SecretService) Close(session dbus.BusObject) error {
return session.Call(sessionInterface+".Close", 0).Err
}
// CreateCollection with the supplied label.
func (s *SecretService) CreateCollection(label string) (dbus.BusObject, error) {
properties := map[string]dbus.Variant{
collectionInterface + ".Label": dbus.MakeVariant(label),
}
var collection, prompt dbus.ObjectPath
err := s.object.Call(serviceInterface+".CreateCollection", 0, properties, "").
Store(&collection, &prompt)
if err != nil {
return nil, err
}
_, v, err := s.handlePrompt(prompt)
if err != nil {
return nil, err
}
if v.String() != "" {
collection = dbus.ObjectPath(v.String())
}
return s.Object(serviceName, collection), nil
}
// CreateItem creates an item in a collection, with label, attributes and a
// related secret.
func (s *SecretService) CreateItem(collection dbus.BusObject, label string, attributes map[string]string, secret Secret) error {
properties := map[string]dbus.Variant{
itemInterface + ".Label": dbus.MakeVariant(label),
itemInterface + ".Attributes": dbus.MakeVariant(attributes),
}
var item, prompt dbus.ObjectPath
err := collection.Call(collectionInterface+".CreateItem", 0,
properties, secret, true).Store(&item, &prompt)
if err != nil {
return err
}
_, _, err = s.handlePrompt(prompt)
if err != nil {
return err
}
return nil
}
// handlePrompt checks if a prompt should be handles and handles it by
// triggering the prompt and waiting for the Sercret service daemon to display
// the prompt to the user.
func (s *SecretService) handlePrompt(prompt dbus.ObjectPath) (bool, dbus.Variant, error) {
if prompt != dbus.ObjectPath("/") {
err := s.Object(serviceName, prompt).Call(promptInterface+".Prompt", 0, "").Err
if err != nil {
return false, dbus.MakeVariant(""), err
}
promptSignal := make(chan *dbus.Signal, 1)
s.Signal(promptSignal)
signal := <-promptSignal
switch signal.Name {
case promptInterface + ".Completed":
dismissed := signal.Body[0].(bool)
result := signal.Body[1].(dbus.Variant)
return dismissed, result, nil
}
}
return false, dbus.MakeVariant(""), nil
}
// SearchItems returns a list of items matching the search object.
func (s *SecretService) SearchItems(collection dbus.BusObject, search interface{}) ([]dbus.ObjectPath, error) {
var results []dbus.ObjectPath
err := collection.Call(collectionInterface+".SearchItems", 0, search).Store(&results)
if err != nil {
return nil, err
}
return results, nil
}
// GetSecret gets secret from an item in a given session.
func (s *SecretService) GetSecret(itemPath dbus.ObjectPath, session dbus.ObjectPath) (*Secret, error) {
var secret Secret
err := s.Object(serviceName, itemPath).Call(itemInterface+".GetSecret", 0, session).Store(&secret)
if err != nil {
return nil, err
}
return &secret, nil
}
// Delete deletes an item from the collection.
func (s *SecretService) Delete(itemPath dbus.ObjectPath) error {
var prompt dbus.ObjectPath
err := s.Object(serviceName, itemPath).Call(itemInterface+".Delete", 0).Store(&prompt)
if err != nil {
return err
}
_, _, err = s.handlePrompt(prompt)
if err != nil {
return err
}
return nil
}