forked from mealal/vault-atlas-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atlas.go
230 lines (189 loc) · 5.55 KB
/
atlas.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
package atlas
import (
"context"
"encoding/json"
"errors"
"fmt"
"sync"
"time"
"github.com/hashicorp/vault/api"
"github.com/hashicorp/vault/builtin/logical/database/dbplugin"
"github.com/hashicorp/vault/plugins"
"github.com/hashicorp/vault/plugins/helper/database/credsutil"
"github.com/hashicorp/vault/plugins/helper/database/dbutil"
"github.com/mitchellh/mapstructure"
)
type atlasConnectionProducer struct {
Username string `json:"username" structs:"username" mapstructure:"username"`
Password string `json:"password" structs:"password" mapstructure:"password"`
GroupID string `json:"groupID" structs:"groupID" mapstructure:"groupID"`
APIId string `json:"apiID" structs:"apiID" mapstructure:"apiID"`
APIKey string `json:"apiKey" structs:"apiKey" mapstructure:"apiKey"`
Initialized bool
RawConfig map[string]interface{}
Type string
sync.Mutex
}
// Atlas is an implementation of Database interface
type Atlas struct {
*atlasConnectionProducer
credsutil.CredentialsProducer
}
type mongodbRole struct {
Role string `json:"role" bson:"role"`
DB string `json:"db" bson:"db"`
}
type mongodbRoles []mongodbRole
type atlasStatement struct {
DB string `json:"db"`
Roles mongodbRoles `json:"roles"`
}
//New function
func New() (interface{}, error) {
db := new()
dbType := dbplugin.NewDatabaseErrorSanitizerMiddleware(db, db.secretValues)
return dbType, nil
}
func new() *Atlas {
connProducer := &atlasConnectionProducer{}
connProducer.Type = atlasTypeName
credsProducer := &credsutil.SQLCredentialsProducer{
DisplayNameLen: 15,
RoleNameLen: 15,
UsernameLen: 100,
Separator: "-",
}
return &Atlas{
atlasConnectionProducer: connProducer,
CredentialsProducer: credsProducer,
}
}
//Run function
func Run(apiTLSConfig *api.TLSConfig) error {
dbType, err := New()
if err != nil {
return err
}
plugins.Serve(dbType, apiTLSConfig)
return nil
}
//Type of database
func (m *Atlas) Type() (string, error) {
return atlasTypeName, nil
}
//CreateUser function
func (m *Atlas) CreateUser(ctx context.Context, statements dbplugin.Statements, usernameConfig dbplugin.UsernameConfig, expiration time.Time) (username string, password string, err error) {
if m == nil {
return "", "", fmt.Errorf("NIL detected")
}
m.Lock()
defer m.Unlock()
statements = dbutil.StatementCompatibilityHelper(statements)
if len(statements.Creation) == 0 {
return "", "", dbutil.ErrEmptyCreationStatement
}
username, err = m.GenerateUsername(usernameConfig)
if err != nil {
return "", "", err
}
password, err = m.GeneratePassword()
if err != nil {
return "", "", err
}
var mongoCS atlasStatement
err = json.Unmarshal([]byte(statements.Creation[0]), &mongoCS)
if err != nil {
return "", "", err
}
if len(mongoCS.Roles) == 0 {
return "", "", fmt.Errorf("roles array is required in creation statement")
}
// Default to "admin" if no db provided
if mongoCS.DB == "" {
mongoCS.DB = "admin"
}
var roles []Roles
for _, role := range mongoCS.Roles {
var atlasRole Roles
atlasRole.RoleName = role.Role
if role.DB == "" {
atlasRole.DatabaseName = "admin"
} else {
atlasRole.DatabaseName = role.DB
}
roles = append(roles, atlasRole)
}
err = createAtlasUser(m.GroupID, m.APIId, m.APIKey, username, password, mongoCS.DB, roles)
if err != nil {
return "", "", err
}
return username, password, nil
}
//RenewUser function
func (m *Atlas) RenewUser(ctx context.Context, statements dbplugin.Statements, username string, expiration time.Time) error {
return nil
}
//RevokeUser function
func (m *Atlas) RevokeUser(ctx context.Context, statements dbplugin.Statements, username string) error {
m.Lock()
defer m.Unlock()
statements = dbutil.StatementCompatibilityHelper(statements)
// If no revocation statements provided, pass in empty JSON
var revocationStatement string
switch len(statements.Revocation) {
case 0:
revocationStatement = `{}`
case 1:
revocationStatement = statements.Revocation[0]
default:
return fmt.Errorf("expected 0 or 1 revocation statements, got %d", len(statements.Revocation))
}
// Unmarshal revocation statements into mongodbRoles
var mongoCS atlasStatement
err := json.Unmarshal([]byte(revocationStatement), &mongoCS)
if err != nil {
return err
}
err = deleteAtlasUser(m.GroupID, m.APIId, m.APIKey, username)
if err != nil {
return err
}
return nil
}
// RotateRootCredentials is not currently supported on MongoDB
func (m *Atlas) RotateRootCredentials(ctx context.Context, statements []string) (map[string]interface{}, error) {
return nil, errors.New("root credential rotation is not currently implemented in this database secrets engine")
}
func (c *atlasConnectionProducer) secretValues() map[string]interface{} {
return map[string]interface{}{
c.Password: "[password]",
}
}
func (c *atlasConnectionProducer) Initialize(ctx context.Context, conf map[string]interface{}, verifyConnection bool) error {
_, err := c.Init(ctx, conf, verifyConnection)
return err
}
func (c *atlasConnectionProducer) Init(ctx context.Context, conf map[string]interface{}, verifyConnection bool) (map[string]interface{}, error) {
c.Lock()
defer c.Unlock()
c.RawConfig = conf
err := mapstructure.WeakDecode(conf, c)
if err != nil {
return nil, err
}
if len(c.APIId) == 0 {
return nil, fmt.Errorf("apiID cannot be empty")
}
if len(c.APIKey) == 0 {
return nil, fmt.Errorf("apiKey cannot be empty")
}
if len(c.GroupID) == 0 {
return nil, fmt.Errorf("groupID cannot be empty")
}
c.Initialized = true
return conf, nil
}
//Close function
func (m *Atlas) Close() error {
return nil
}