forked from 99designs/go-keychain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
macos.go
184 lines (152 loc) · 5.23 KB
/
macos.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
// +build darwin,!ios
package keychain
/*
#cgo LDFLAGS: -framework CoreFoundation -framework Security
#include <CoreFoundation/CoreFoundation.h>
#include <Security/Security.h>
*/
import "C"
import (
"os"
"unsafe"
)
// AccessibleKey is key for kSecAttrAccessible
var AccessibleKey = attrKey(C.CFTypeRef(C.kSecAttrAccessible))
var accessibleTypeRef = map[Accessible]C.CFTypeRef{
AccessibleWhenUnlocked: C.CFTypeRef(C.kSecAttrAccessibleWhenUnlocked),
AccessibleAfterFirstUnlock: C.CFTypeRef(C.kSecAttrAccessibleAfterFirstUnlock),
AccessibleAlways: C.CFTypeRef(C.kSecAttrAccessibleAlways),
AccessibleWhenUnlockedThisDeviceOnly: C.CFTypeRef(C.kSecAttrAccessibleWhenUnlockedThisDeviceOnly),
AccessibleAfterFirstUnlockThisDeviceOnly: C.CFTypeRef(C.kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly),
AccessibleAccessibleAlwaysThisDeviceOnly: C.CFTypeRef(C.kSecAttrAccessibleAlwaysThisDeviceOnly),
// Only available in 10.10
//AccessibleWhenPasscodeSetThisDeviceOnly: C.CFTypeRef(C.kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly),
}
// DeleteItemRef deletes a keychain item reference.
func DeleteItemRef(ref C.CFTypeRef) error {
errCode := C.SecKeychainItemDelete(C.SecKeychainItemRef(ref))
return checkError(errCode)
}
var (
// KeychainKey is key for kSecUseKeychain
KeychainKey = attrKey(C.CFTypeRef(C.kSecUseKeychain))
// MatchSearchListKey is key for kSecMatchSearchList
MatchSearchListKey = attrKey(C.CFTypeRef(C.kSecMatchSearchList))
)
// Keychain represents the path to a specific OSX keychain
type Keychain struct {
path string
}
// NewKeychain creates a new keychain file with a password
func NewKeychain(path string, password string) (Keychain, error) {
return newKeychain(path, password, false)
}
// NewKeychainWithPrompt creates a new Keychain and prompts user for password
func NewKeychainWithPrompt(path string) (Keychain, error) {
return newKeychain(path, "", true)
}
func newKeychain(path, password string, promptUser bool) (Keychain, error) {
pathRef := C.CString(path)
defer C.free(unsafe.Pointer(pathRef))
var errCode C.OSStatus
var kref C.SecKeychainRef
if promptUser {
errCode = C.SecKeychainCreate(pathRef, C.UInt32(0), nil, C.Boolean(1), 0, &kref) //nolint
} else {
passwordRef := C.CString(password)
defer C.free(unsafe.Pointer(passwordRef))
errCode = C.SecKeychainCreate(pathRef, C.UInt32(len(password)), unsafe.Pointer(passwordRef), C.Boolean(0), 0, &kref) //nolint
}
if err := checkError(errCode); err != nil {
return Keychain{}, err
}
// TODO: Without passing in kref I get 'One or more parameters passed to the function were not valid (-50)'
defer Release(C.CFTypeRef(kref))
return Keychain{
path: path,
}, nil
}
// NewWithPath to use an existing keychain
func NewWithPath(path string) Keychain {
return Keychain{
path: path,
}
}
// Status returns the status of the keychain
func (kc Keychain) Status() error {
// returns no error even if it doesn't exist
kref, err := openKeychainRef(kc.path)
if err != nil {
return err
}
defer C.CFRelease(C.CFTypeRef(kref))
var status C.SecKeychainStatus
return checkError(C.SecKeychainGetStatus(kref, &status))
}
// The returned SecKeychainRef, if non-nil, must be released via CFRelease.
func openKeychainRef(path string) (C.SecKeychainRef, error) {
pathName := C.CString(path)
defer C.free(unsafe.Pointer(pathName))
var kref C.SecKeychainRef
if err := checkError(C.SecKeychainOpen(pathName, &kref)); err != nil { //nolint
return 0, err
}
return kref, nil
}
// UnlockAtPath unlocks keychain at path
func UnlockAtPath(path string, password string) error {
kref, err := openKeychainRef(path)
defer Release(C.CFTypeRef(kref))
if err != nil {
return err
}
passwordRef := C.CString(password)
defer C.free(unsafe.Pointer(passwordRef))
return checkError(C.SecKeychainUnlock(kref, C.UInt32(len(password)), unsafe.Pointer(passwordRef), C.Boolean(1)))
}
// LockAtPath locks keychain at path
func LockAtPath(path string) error {
kref, err := openKeychainRef(path)
defer Release(C.CFTypeRef(kref))
if err != nil {
return err
}
return checkError(C.SecKeychainLock(kref))
}
// Delete the Keychain
func (kc *Keychain) Delete() error {
return os.Remove(kc.path)
}
// Convert Keychain to CFTypeRef.
// The returned CFTypeRef, if non-nil, must be released via CFRelease.
func (kc Keychain) Convert() (C.CFTypeRef, error) {
keyRef, err := openKeychainRef(kc.path)
return C.CFTypeRef(keyRef), err
}
type keychainArray []Keychain
// Convert the keychainArray to a CFTypeRef.
// The returned CFTypeRef, if non-nil, must be released via CFRelease.
func (ka keychainArray) Convert() (C.CFTypeRef, error) {
var refs = make([]C.CFTypeRef, len(ka))
var err error
for idx, kc := range ka {
if refs[idx], err = kc.Convert(); err != nil {
// If we error trying to convert lets release any we converted before
for _, ref := range refs {
if ref != 0 {
Release(ref)
}
}
return 0, err
}
}
return C.CFTypeRef(ArrayToCFArray(refs)), nil
}
// SetMatchSearchList sets match type on keychains
func (k *Item) SetMatchSearchList(karr ...Keychain) {
k.attr[MatchSearchListKey] = keychainArray(karr)
}
// UseKeychain tells item to use the specified Keychain
func (k *Item) UseKeychain(kc Keychain) {
k.attr[KeychainKey] = kc
}