-
Notifications
You must be signed in to change notification settings - Fork 5
/
aerospike.go
210 lines (168 loc) · 5.54 KB
/
aerospike.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
//Package aerospike implements a Vault database plugin for Aeropike.
package aerospike
import (
"context"
"encoding/json"
"errors"
"fmt"
"time"
"github.com/aerospike/aerospike-client-go/v5"
"github.com/hashicorp/vault/api"
"github.com/hashicorp/vault/sdk/database/dbplugin"
"github.com/hashicorp/vault/sdk/database/helper/credsutil"
"github.com/hashicorp/vault/sdk/database/helper/dbutil"
)
type aerospikeCreationStatement struct {
Roles []string `json:"roles"`
}
const aerospikeTypeName = "aerospike"
var _ dbplugin.Database = &Aerospike{}
// Aerospike is an implementation of Database interface.
type Aerospike struct {
*aerospikeConnectionProducer
credsutil.CredentialsProducer
}
// New returns a new Aerospike instance.
func New() (interface{}, error) {
db := new()
// Wrap the plugin with middleware to sanitize errors
dbType := dbplugin.NewDatabaseErrorSanitizerMiddleware(db, db.secretValues)
return dbType, nil
}
func new() *Aerospike {
connProducer := &aerospikeConnectionProducer{}
connProducer.Type = aerospikeTypeName
credsProducer := &credsutil.SQLCredentialsProducer{
DisplayNameLen: 15,
RoleNameLen: 15,
// See https://www.aerospike.com/docs/guide/limitations.html
UsernameLen: 63,
Separator: "-",
}
return &Aerospike{
aerospikeConnectionProducer: connProducer,
CredentialsProducer: credsProducer,
}
}
// Run instantiates an Aerospike object, and runs the RPC server for the plugin.
func Run(apiTLSConfig *api.TLSConfig) error {
dbType, err := New()
if err != nil {
return err
}
dbplugin.Serve(dbType.(dbplugin.Database), api.VaultPluginTLSProvider(apiTLSConfig))
return nil
}
// Type returns the TypeName for this backend
func (a *Aerospike) Type() (string, error) {
return aerospikeTypeName, nil
}
func (a *Aerospike) getConnection(ctx context.Context) (*aerospike.Client, error) {
client, err := a.Connection(ctx)
if err != nil {
return nil, err
}
return client.(*aerospike.Client), nil
}
// CreateUser generates the username/password on the underlying Aerospike
// secret backend as instructed by the CreationStatement provided. The creation
// statement is a JSON blob that has a an array of roles.
//
// JSON Example:
// { roles": ["read", "user-admin"] }
func (a *Aerospike) CreateUser(ctx context.Context, statements dbplugin.Statements, usernameConfig dbplugin.UsernameConfig, expiration time.Time) (username string, password string, err error) {
// Grab the lock
a.Lock()
defer a.Unlock()
statements = dbutil.StatementCompatibilityHelper(statements)
if len(statements.Creation) == 0 {
return "", "", dbutil.ErrEmptyCreationStatement
}
client, err := a.getConnection(ctx)
if err != nil {
return "", "", err
}
username, err = a.GenerateUsername(usernameConfig)
if err != nil {
return "", "", err
}
password, err = a.GeneratePassword()
if err != nil {
return "", "", err
}
// Unmarshal statements.CreationStatements into roles
var cs aerospikeCreationStatement
err = json.Unmarshal([]byte(statements.Creation[0]), &cs)
if err != nil {
return "", "", err
}
if len(cs.Roles) == 0 {
return "", "", fmt.Errorf("roles array is required in creation statement")
}
if err := client.CreateUser(aerospike.NewAdminPolicy(), username, password, cs.Roles); err != nil {
return "", "", err
}
return username, password, nil
}
// SetCredentials uses provided information to set/create a user in the
// database. Unlike CreateUser, this method requires a username be provided and
// uses the name given, instead of generating a name. This is used for creating
// and setting the password of static accounts, as well as rolling back
// passwords in the database in the event an updated database fails to save in
// Vault's storage.
func (a *Aerospike) SetCredentials(ctx context.Context, statements dbplugin.Statements, staticUser dbplugin.StaticUserConfig) (username, password string, err error) {
// Grab the lock
a.Lock()
defer a.Unlock()
client, err := a.getConnection(ctx)
if err != nil {
return "", "", err
}
username = staticUser.Username
password = staticUser.Password
if err := client.ChangePassword(aerospike.NewAdminPolicy(), username, password); err != nil {
return "", "", err
}
return username, password, nil
}
// RenewUser is not supported on Aerospike, so this is a no-op.
func (a *Aerospike) RenewUser(ctx context.Context, statements dbplugin.Statements, username string, expiration time.Time) error {
// NOOP
return nil
}
// RevokeUser drops the specified user.
func (a *Aerospike) RevokeUser(ctx context.Context, statements dbplugin.Statements, username string) error {
// Grab the lock
a.Lock()
defer a.Unlock()
client, err := a.getConnection(ctx)
if err != nil {
return err
}
return client.DropUser(aerospike.NewAdminPolicy(), username)
}
// RotateRootCredentials rotates the initial root database credentials. The new
// root password will only be known by Vault.
func (a *Aerospike) RotateRootCredentials(ctx context.Context, statements []string) (map[string]interface{}, error) {
// Grab the lock
a.Lock()
defer a.Unlock()
if len(a.Username) == 0 || len(a.Password) == 0 {
return nil, errors.New("username and password are required to rotate")
}
client, err := a.getConnection(ctx)
if err != nil {
return nil, err
}
password, err := a.GeneratePassword()
if err != nil {
return nil, err
}
if err := client.ChangePassword(aerospike.NewAdminPolicy(), a.Username, password); err != nil {
return nil, err
}
// Close the database connection to ensure no new connections come in
//client.Close()
a.RawConfig["password"] = password
return a.RawConfig, nil
}