forked from jsipprell/keyctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
key.go
84 lines (69 loc) · 1.73 KB
/
key.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
package keyctl
import (
"time"
"unsafe"
)
// Represents a single key linked to one or more kernel keyrings.
type Key struct {
Name string
id, ring keyId
size int
ttl time.Duration
}
func (k *Key) private() {}
// Returns the 32-bit kernel identifier for a specific key
func (k *Key) Id() int32 {
return int32(k.id)
}
// To expire a key automatically after some period of time call this method.
func (k *Key) ExpireAfter(nsecs uint) error {
k.ttl = time.Duration(nsecs) * time.Second
_, _, err := keyctl(keyctlSetTimeout, uintptr(k.id), uintptr(nsecs))
return err
}
// Return information about a key.
func (k *Key) Info() (Info, error) {
return getInfo(k.id)
}
// Get the key's value as a byte slice
func (k *Key) Get() ([]byte, error) {
var (
b []byte
err error
sizeRead int
)
if k.size == 0 {
k.size = 512
}
size := k.size
b = make([]byte, int(size))
sizeRead = size + 1
for sizeRead > size {
r1, _, err := keyctl(keyctlRead, uintptr(k.id), uintptr(unsafe.Pointer(&b[0])), uintptr(size))
if err != nil {
return nil, err
}
if sizeRead = int(r1); sizeRead > size {
b = make([]byte, sizeRead)
size = sizeRead
sizeRead = size + 1
} else {
k.size = sizeRead
}
}
return b[:k.size], err
}
// Set the key's value from a bytes slice. Expiration, if active, is reset by calling this method.
func (k *Key) Set(b []byte) error {
err := updateKey(k.id, b)
if err == nil && k.ttl > 0 {
err = k.ExpireAfter(uint(k.ttl.Seconds()))
}
return err
}
// Unlink a key from the keyring it was loaded from (or added to). If the key
// is not linked to any other keyrings, it is destroyed.
func (k *Key) Unlink() error {
_, _, err := keyctl(keyctlUnlink, uintptr(k.id), uintptr(k.ring))
return err
}