-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
accounts.go
318 lines (284 loc) · 9.42 KB
/
accounts.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
package settings
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"time"
log "github.com/sirupsen/logrus"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
v1 "k8s.io/api/core/v1"
"github.com/argoproj/argo-cd/common"
)
const (
accountsKeyPrefix = "accounts"
accountPasswordSuffix = "password"
accountPasswordMtimeSuffix = "passwordMtime"
accountEnabledSuffix = "enabled"
accountTokensSuffix = "tokens"
// Admin superuser password storage
// settingAdminPasswordHashKey designates the key for a root password hash inside a Kubernetes secret.
settingAdminPasswordHashKey = "admin.password"
// settingAdminPasswordMtimeKey designates the key for a root password mtime inside a Kubernetes secret.
settingAdminPasswordMtimeKey = "admin.passwordMtime"
settingAdminEnabledKey = "admin.enabled"
settingAdminTokensKey = "admin.tokens"
)
type AccountCapability string
const (
// AccountCapabilityLogin represents capability to create UI session tokens.
AccountCapabilityLogin AccountCapability = "login"
// AccountCapabilityLogin represents capability to generate API auth tokens.
AccountCapabilityApiKey AccountCapability = "apiKey"
)
// Token holds the information about the generated auth token.
type Token struct {
ID string `json:"id"`
IssuedAt int64 `json:"iat"`
ExpiresAt int64 `json:"exp,omitempty"`
}
// Account holds local account information
type Account struct {
PasswordHash string
PasswordMtime *time.Time
Enabled bool
Capabilities []AccountCapability
Tokens []Token
}
// FormatPasswordMtime return the formatted password modify time or empty string of password modify time is nil.
func (a *Account) FormatPasswordMtime() string {
if a.PasswordMtime == nil {
return ""
}
return a.PasswordMtime.Format(time.RFC3339)
}
// FormatCapabilities returns comma separate list of user capabilities.
func (a *Account) FormatCapabilities() string {
var items []string
for i := range a.Capabilities {
items = append(items, string(a.Capabilities[i]))
}
return strings.Join(items, ",")
}
// TokenIndex return an index of a token with the given identifier or -1 if token not found.
func (a *Account) TokenIndex(id string) int {
for i := range a.Tokens {
if a.Tokens[i].ID == id {
return i
}
}
return -1
}
// HasCapability return true if the account has the specified capability.
func (a *Account) HasCapability(capability AccountCapability) bool {
for _, c := range a.Capabilities {
if c == capability {
return true
}
}
return false
}
func (mgr *SettingsManager) saveAccount(name string, account Account) error {
return mgr.updateSecret(func(secret *v1.Secret) error {
return mgr.updateConfigMap(func(cm *v1.ConfigMap) error {
return saveAccount(secret, cm, name, account)
})
})
}
// AddAccount save an account with the given name and properties.
func (mgr *SettingsManager) AddAccount(name string, account Account) error {
accounts, err := mgr.GetAccounts()
if err != nil {
return err
}
if _, ok := accounts[name]; ok {
return status.Errorf(codes.AlreadyExists, "account '%s' already exists", name)
}
return mgr.saveAccount(name, account)
}
// GetAccount return an account info by the specified name.
func (mgr *SettingsManager) GetAccount(name string) (*Account, error) {
accounts, err := mgr.GetAccounts()
if err != nil {
return nil, err
}
account, ok := accounts[name]
if !ok {
return nil, status.Errorf(codes.NotFound, "account '%s' does not exist", name)
}
return &account, nil
}
// UpdateAccount runs the callback function against an account that matches to the specified name
//and persist changes applied by the callback.
func (mgr *SettingsManager) UpdateAccount(name string, callback func(account *Account) error) error {
account, err := mgr.GetAccount(name)
if err != nil {
return err
}
err = callback(account)
if err != nil {
return err
}
return mgr.saveAccount(name, *account)
}
// GetAccounts returns list of configured accounts
func (mgr *SettingsManager) GetAccounts() (map[string]Account, error) {
err := mgr.ensureSynced(false)
if err != nil {
return nil, err
}
secret, err := mgr.secrets.Secrets(mgr.namespace).Get(common.ArgoCDSecretName)
if err != nil {
return nil, err
}
cm, err := mgr.configmaps.ConfigMaps(mgr.namespace).Get(common.ArgoCDConfigMapName)
if err != nil {
return nil, err
}
return parseAccounts(secret, cm)
}
func updateAccountMap(cm *v1.ConfigMap, key string, val string, defVal string) {
existingVal := cm.Data[key]
if existingVal != val {
if val == "" || val == defVal {
delete(cm.Data, key)
} else {
cm.Data[key] = val
}
}
}
func updateAccountSecret(secret *v1.Secret, key string, val string, defVal string) {
existingVal := string(secret.Data[key])
if existingVal != val {
if val == "" || val == defVal {
delete(secret.Data, key)
} else {
secret.Data[key] = []byte(val)
}
}
}
func saveAccount(secret *v1.Secret, cm *v1.ConfigMap, name string, account Account) error {
tokens, err := json.Marshal(account.Tokens)
if err != nil {
return err
}
if name == common.ArgoCDAdminUsername {
updateAccountSecret(secret, settingAdminPasswordHashKey, account.PasswordHash, "")
updateAccountSecret(secret, settingAdminPasswordMtimeKey, account.FormatPasswordMtime(), "")
updateAccountSecret(secret, settingAdminTokensKey, string(tokens), "[]")
updateAccountMap(cm, settingAdminEnabledKey, strconv.FormatBool(account.Enabled), "true")
} else {
updateAccountSecret(secret, fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountPasswordSuffix), account.PasswordHash, "")
updateAccountSecret(secret, fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountPasswordMtimeSuffix), account.FormatPasswordMtime(), "")
updateAccountSecret(secret, fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountTokensSuffix), string(tokens), "[]")
updateAccountMap(cm, fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountEnabledSuffix), strconv.FormatBool(account.Enabled), "true")
updateAccountMap(cm, fmt.Sprintf("%s.%s", accountsKeyPrefix, name), account.FormatCapabilities(), "")
}
return nil
}
func parseAdminAccount(secret *v1.Secret, cm *v1.ConfigMap) (*Account, error) {
adminAccount := &Account{Enabled: true, Capabilities: []AccountCapability{AccountCapabilityLogin}}
if adminPasswordHash, ok := secret.Data[settingAdminPasswordHashKey]; ok {
adminAccount.PasswordHash = string(adminPasswordHash)
}
if adminPasswordMtimeBytes, ok := secret.Data[settingAdminPasswordMtimeKey]; ok {
if mTime, err := time.Parse(time.RFC3339, string(adminPasswordMtimeBytes)); err == nil {
adminAccount.PasswordMtime = &mTime
}
}
adminAccount.Tokens = make([]Token, 0)
if tokensStr, ok := secret.Data[settingAdminTokensKey]; ok && string(tokensStr) != "" {
if err := json.Unmarshal(tokensStr, &adminAccount.Tokens); err != nil {
return nil, err
}
}
if enabledStr, ok := cm.Data[settingAdminEnabledKey]; ok {
if enabled, err := strconv.ParseBool(enabledStr); err == nil {
adminAccount.Enabled = enabled
} else {
log.Warnf("ConfigMap has invalid key %s: %v", settingAdminTokensKey, err)
}
}
return adminAccount, nil
}
func parseAccounts(secret *v1.Secret, cm *v1.ConfigMap) (map[string]Account, error) {
adminAccount, err := parseAdminAccount(secret, cm)
if err != nil {
return nil, err
}
accounts := map[string]Account{
common.ArgoCDAdminUsername: *adminAccount,
}
for key, v := range cm.Data {
if !strings.HasPrefix(key, fmt.Sprintf("%s.", accountsKeyPrefix)) {
continue
}
val := v
var accountName, suffix string
parts := strings.Split(key, ".")
switch len(parts) {
case 2:
accountName = parts[1]
case 3:
accountName = parts[1]
suffix = parts[2]
default:
log.Warnf("Unexpected key %s in ConfigMap '%s'", key, cm.Name)
continue
}
account, ok := accounts[accountName]
if !ok {
account = Account{Enabled: true}
accounts[accountName] = account
}
switch suffix {
case "":
for _, capability := range strings.Split(val, ",") {
capability = strings.TrimSpace(capability)
if capability == "" {
continue
}
switch capability {
case string(AccountCapabilityLogin):
account.Capabilities = append(account.Capabilities, AccountCapabilityLogin)
case string(AccountCapabilityApiKey):
account.Capabilities = append(account.Capabilities, AccountCapabilityApiKey)
default:
log.Warnf("not supported account capability '%s' in config map key '%s'", capability, key)
}
}
case accountEnabledSuffix:
account.Enabled, err = strconv.ParseBool(val)
if err != nil {
return nil, err
}
}
accounts[accountName] = account
}
for name, account := range accounts {
if name == common.ArgoCDAdminUsername {
continue
}
if passwordHash, ok := secret.Data[fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountPasswordSuffix)]; ok {
account.PasswordHash = string(passwordHash)
}
if passwordMtime, ok := secret.Data[fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountPasswordMtimeSuffix)]; ok {
if mTime, err := time.Parse(time.RFC3339, string(passwordMtime)); err != nil {
return nil, err
} else {
account.PasswordMtime = &mTime
}
}
if tokensStr, ok := secret.Data[fmt.Sprintf("%s.%s.%s", accountsKeyPrefix, name, accountTokensSuffix)]; ok {
account.Tokens = make([]Token, 0)
if string(tokensStr) != "" {
if err := json.Unmarshal(tokensStr, &account.Tokens); err != nil {
return nil, err
}
}
}
accounts[name] = account
}
return accounts, nil
}