forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfskeypairmgr.go
106 lines (90 loc) · 2.6 KB
/
fskeypairmgr.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
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015-2016 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package asserts
import (
"errors"
"fmt"
"os"
"path/filepath"
"sync"
)
// the default simple filesystem based keypair manager/backstore
const (
privateKeysLayoutVersion = "v1"
privateKeysRoot = "private-keys-" + privateKeysLayoutVersion
)
type filesystemKeypairManager struct {
top string
mu sync.RWMutex
}
// OpenFSKeypairManager opens a filesystem backed assertions backstore under path.
func OpenFSKeypairManager(path string) (KeypairManager, error) {
top := filepath.Join(path, privateKeysRoot)
err := ensureTop(top)
if err != nil {
return nil, err
}
return &filesystemKeypairManager{top: top}, nil
}
var errKeypairAlreadyExists = errors.New("key pair with given key id already exists")
func (fskm *filesystemKeypairManager) Put(privKey PrivateKey) error {
keyID := privKey.PublicKey().ID()
if entryExists(fskm.top, keyID) {
return errKeypairAlreadyExists
}
encoded, err := encodePrivateKey(privKey)
if err != nil {
return fmt.Errorf("cannot store private key: %v", err)
}
fskm.mu.Lock()
defer fskm.mu.Unlock()
err = atomicWriteEntry(encoded, true, fskm.top, keyID)
if err != nil {
return fmt.Errorf("cannot store private key: %v", err)
}
return nil
}
var errKeypairNotFound = &keyNotFoundError{msg: "cannot find key pair"}
func (fskm *filesystemKeypairManager) Get(keyID string) (PrivateKey, error) {
fskm.mu.RLock()
defer fskm.mu.RUnlock()
encoded, err := readEntry(fskm.top, keyID)
if os.IsNotExist(err) {
return nil, errKeypairNotFound
}
if err != nil {
return nil, fmt.Errorf("cannot read key pair: %v", err)
}
privKey, err := decodePrivateKey(encoded)
if err != nil {
return nil, fmt.Errorf("cannot decode key pair: %v", err)
}
return privKey, nil
}
func (fskm *filesystemKeypairManager) Delete(keyID string) error {
fskm.mu.RLock()
defer fskm.mu.RUnlock()
err := removeEntry(fskm.top, keyID)
if err != nil {
if os.IsNotExist(err) {
return errKeypairNotFound
}
return err
}
return nil
}