forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
local_auth_provider.go
443 lines (370 loc) · 13.1 KB
/
local_auth_provider.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
package local
import (
"context"
"fmt"
"strings"
"github.com/pkg/errors"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/auth/providers/common"
"github.com/rancher/rancher/pkg/auth/tokens"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/apis/management.cattle.io/v3public"
"github.com/rancher/types/config"
"github.com/sirupsen/logrus"
"golang.org/x/crypto/bcrypt"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/client-go/tools/cache"
)
const (
Name = "local"
userNameIndex = "authn.management.cattle.io/user-username-index"
gmPrincipalIndex = "authn.management.cattle.io/groupmember-principalid-index"
userSearchIndex = "authn.management.cattle.io/user-search-index"
groupSearchIndex = "authn.management.cattle.io/group-search-index"
searchIndexDefaultLen = 6
)
type Provider struct {
userLister v3.UserLister
groupLister v3.GroupLister
userIndexer cache.Indexer
gmIndexer cache.Indexer
groupIndexer cache.Indexer
tokenMGR *tokens.Manager
invalidHash []byte
}
func Configure(ctx context.Context, mgmtCtx *config.ScaledContext, tokenMGR *tokens.Manager) common.AuthProvider {
informer := mgmtCtx.Management.Users("").Controller().Informer()
indexers := map[string]cache.IndexFunc{userNameIndex: userNameIndexer, userSearchIndex: userSearchIndexer}
informer.AddIndexers(indexers)
gmInformer := mgmtCtx.Management.GroupMembers("").Controller().Informer()
gmIndexers := map[string]cache.IndexFunc{gmPrincipalIndex: gmPIdIndexer}
gmInformer.AddIndexers(gmIndexers)
gInformer := mgmtCtx.Management.Groups("").Controller().Informer()
gIndexers := map[string]cache.IndexFunc{groupSearchIndex: groupSearchIndexer}
gInformer.AddIndexers(gIndexers)
invalidHash, _ := bcrypt.GenerateFromPassword([]byte("invalid"), bcrypt.DefaultCost)
l := &Provider{
userIndexer: informer.GetIndexer(),
gmIndexer: gmInformer.GetIndexer(),
groupLister: mgmtCtx.Management.Groups("").Controller().Lister(),
groupIndexer: gInformer.GetIndexer(),
userLister: mgmtCtx.Management.Users("").Controller().Lister(),
tokenMGR: tokenMGR,
invalidHash: invalidHash,
}
return l
}
func (l *Provider) GetName() string {
return Name
}
func (l *Provider) CustomizeSchema(schema *types.Schema) {
schema.ActionHandler = l.actionHandler
}
func (l *Provider) TransformToAuthProvider(authConfig map[string]interface{}) map[string]interface{} {
return common.TransformToAuthProvider(authConfig)
}
func (l *Provider) getUser(username string) (*v3.User, error) {
objs, err := l.userIndexer.ByIndex(userNameIndex, username)
if err != nil {
return nil, err
}
if len(objs) == 0 {
return nil, httperror.WrapAPIError(err, httperror.Unauthorized, "authentication failed")
}
if len(objs) > 1 {
return nil, fmt.Errorf("found more than one users with username %v", username)
}
user, ok := objs[0].(*v3.User)
if !ok {
return nil, fmt.Errorf("fatal error. %v is not a user", objs[0])
}
return user, nil
}
func (l *Provider) AuthenticateUser(input interface{}) (v3.Principal, []v3.Principal, string, error) {
localInput, ok := input.(*v3public.BasicLogin)
if !ok {
return v3.Principal{}, nil, "", httperror.NewAPIError(httperror.ServerError, "Unexpected input type")
}
username := localInput.Username
pwd := localInput.Password
user, err := l.getUser(username)
if err != nil {
// If the user don't exist the password is evaluated
// to avoid user enumeration via timing attack (time based side-channel).
bcrypt.CompareHashAndPassword(l.invalidHash, []byte(pwd))
return v3.Principal{}, nil, "", err
}
if err := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(pwd)); err != nil {
return v3.Principal{}, nil, "", httperror.WrapAPIError(err, httperror.Unauthorized, "authentication failed")
}
principalID := getLocalPrincipalID(user)
userPrincipal := l.toPrincipal("user", user.DisplayName, user.Username, principalID, nil)
userPrincipal.Me = true
groupPrincipals, err := l.getGroupPrincipals(user)
if err != nil {
return v3.Principal{}, nil, "", errors.Wrapf(err, "failed to get groups for %v", user.Name)
}
return userPrincipal, groupPrincipals, "", nil
}
func getLocalPrincipalID(user *v3.User) string {
// TODO error condition handling: no principal, more than one that would match
var principalID string
for _, p := range user.PrincipalIDs {
if strings.HasPrefix(p, Name+"://") {
principalID = p
}
}
return principalID
}
func (l *Provider) getGroupPrincipals(user *v3.User) ([]v3.Principal, error) {
groupPrincipals := []v3.Principal{}
for _, pid := range user.PrincipalIDs {
objs, err := l.gmIndexer.ByIndex(gmPrincipalIndex, pid)
if err != nil {
return []v3.Principal{}, err
}
for _, o := range objs {
gm, ok := o.(*v3.GroupMember)
if !ok {
continue
}
//find group for this member mapping
localGroup, err := l.groupLister.Get("", gm.GroupName)
if err != nil {
logrus.Errorf("Failed to get Group resource %v: %v", gm.GroupName, err)
continue
}
groupPrincipal := l.toPrincipal("group", localGroup.DisplayName, "", Name+"://"+localGroup.Name, nil)
groupPrincipal.MemberOf = true
groupPrincipals = append(groupPrincipals, groupPrincipal)
}
}
return groupPrincipals, nil
}
func (l *Provider) RefetchGroupPrincipals(principalID string, secret string) ([]v3.Principal, error) {
userID := strings.SplitN(principalID, "://", 2)[1]
user, err := l.userLister.Get("", userID)
if err != nil {
return nil, err
}
return l.getGroupPrincipals(user)
}
func (l *Provider) SearchPrincipals(searchKey, principalType string, token v3.Token) ([]v3.Principal, error) {
return l.SearchPrincipalsDedupe(searchKey, principalType, token, nil)
}
// SearchPrincipalsDedupe performs principal search, but deduplicates the results against the supplied list (that should have come from other non-local auth providers)
// This is to avoid getting duplicate search results
func (l *Provider) SearchPrincipalsDedupe(searchKey, principalType string, token v3.Token, principalsFromOtherProviders []v3.Principal) ([]v3.Principal, error) {
fromOtherProviders := map[string]bool{}
for _, p := range principalsFromOtherProviders {
fromOtherProviders[p.Name] = true
}
var principals []v3.Principal
var localUsers []*v3.User
var localGroups []*v3.Group
var err error
if len(searchKey) > searchIndexDefaultLen {
localUsers, localGroups, err = l.listAllUsersAndGroups(searchKey)
} else {
localUsers, localGroups, err = l.listUsersAndGroupsByIndex(searchKey)
}
if err != nil {
logrus.Infof("Failed to search User/Group resources for %v: %v", searchKey, err)
return principals, err
}
if principalType == "" || principalType == "user" {
User:
for _, user := range localUsers {
for _, p := range user.PrincipalIDs {
if fromOtherProviders[p] {
continue User
}
}
principalID := getLocalPrincipalID(user)
userPrincipal := l.toPrincipal("user", user.DisplayName, user.Username, principalID, &token)
principals = append(principals, userPrincipal)
}
}
if principalType == "" || principalType == "group" {
for _, group := range localGroups {
groupPrincipal := l.toPrincipal("group", group.DisplayName, "", Name+"://"+group.Name, &token)
principals = append(principals, groupPrincipal)
}
}
return principals, nil
}
func (l *Provider) toPrincipal(principalType, displayName, loginName, id string, token *v3.Token) v3.Principal {
if displayName == "" {
displayName = loginName
}
princ := v3.Principal{
ObjectMeta: metav1.ObjectMeta{Name: id},
DisplayName: displayName,
LoginName: loginName,
Provider: Name,
Me: false,
}
if principalType == "user" {
princ.PrincipalType = "user"
if token != nil {
princ.Me = l.isThisUserMe(token.UserPrincipal, princ)
}
} else {
princ.PrincipalType = "group"
if token != nil {
princ.MemberOf = l.tokenMGR.IsMemberOf(*token, princ)
}
}
return princ
}
func (l *Provider) GetPrincipal(principalID string, token v3.Token) (v3.Principal, error) {
// TODO implement group lookup (local groups currently not implemented, so we can skip)
// parsing id to get the external id and type. id looks like github_[user|org|team]://12345
var name string
parts := strings.SplitN(principalID, ":", 2)
if len(parts) != 2 {
return v3.Principal{}, errors.Errorf("invalid id %v", principalID)
}
name = strings.TrimPrefix(parts[1], "//")
user, err := l.userLister.Get("", name)
if err != nil {
return v3.Principal{}, err
}
princID := getLocalPrincipalID(user)
princ := l.toPrincipal("user", user.DisplayName, user.Username, princID, &token)
return princ, nil
}
func (l *Provider) listAllUsersAndGroups(searchKey string) ([]*v3.User, []*v3.Group, error) {
var localUsers []*v3.User
var localGroups []*v3.Group
allUsers, err := l.userLister.List("", labels.NewSelector())
if err != nil {
logrus.Infof("Failed to search User resources for %v: %v", searchKey, err)
return localUsers, localGroups, err
}
for _, user := range allUsers {
if !(strings.HasPrefix(user.ObjectMeta.Name, searchKey) || strings.HasPrefix(user.Username, searchKey) || strings.HasPrefix(user.DisplayName, searchKey)) {
continue
}
localUsers = append(localUsers, user)
}
allGroups, err := l.groupLister.List("", labels.NewSelector())
if err != nil {
logrus.Infof("Failed to search group resources for %v: %v", searchKey, err)
return localUsers, localGroups, err
}
for _, group := range allGroups {
if !(strings.HasPrefix(group.ObjectMeta.Name, searchKey) || strings.HasPrefix(group.DisplayName, searchKey)) {
continue
}
localGroups = append(localGroups, group)
}
return localUsers, localGroups, err
}
func (l *Provider) listUsersAndGroupsByIndex(searchKey string) ([]*v3.User, []*v3.Group, error) {
var localUsers []*v3.User
var localGroups []*v3.Group
var err error
objs, err := l.userIndexer.ByIndex(userSearchIndex, searchKey)
if err != nil {
logrus.Infof("Failed to search User resources for %v: %v", searchKey, err)
return localUsers, localGroups, err
}
for _, obj := range objs {
user, ok := obj.(*v3.User)
if !ok {
logrus.Errorf("User isnt a user %v", obj)
return localUsers, localGroups, err
}
localUsers = append(localUsers, user)
}
groupObjs, err := l.groupIndexer.ByIndex(groupSearchIndex, searchKey)
if err != nil {
logrus.Infof("Failed to search Group resources for %v: %v", searchKey, err)
return localUsers, localGroups, err
}
for _, obj := range groupObjs {
group, ok := obj.(*v3.Group)
if !ok {
logrus.Errorf("Object isnt a group %v", obj)
return localUsers, localGroups, err
}
localGroups = append(localGroups, group)
}
return localUsers, localGroups, err
}
func (l *Provider) isThisUserMe(me v3.Principal, other v3.Principal) bool {
if me.ObjectMeta.Name == other.ObjectMeta.Name && me.LoginName == other.LoginName && me.PrincipalType == other.PrincipalType {
return true
}
return false
}
func (l *Provider) actionHandler(actionName string, action *types.Action, request *types.APIContext) error {
return httperror.NewAPIError(httperror.ActionNotAvailable, "")
}
func userNameIndexer(obj interface{}) ([]string, error) {
user, ok := obj.(*v3.User)
if !ok {
return []string{}, nil
}
return []string{user.Username}, nil
}
func gmPIdIndexer(obj interface{}) ([]string, error) {
gm, ok := obj.(*v3.GroupMember)
if !ok {
return []string{}, nil
}
return []string{gm.PrincipalID}, nil
}
func userSearchIndexer(obj interface{}) ([]string, error) {
user, ok := obj.(*v3.User)
if !ok {
return []string{}, nil
}
var fieldIndexes []string
fieldIndexes = append(fieldIndexes, indexField(user.Username, minOf(len(user.Username), searchIndexDefaultLen))...)
fieldIndexes = append(fieldIndexes, indexField(user.DisplayName, minOf(len(user.DisplayName), searchIndexDefaultLen))...)
fieldIndexes = append(fieldIndexes, indexField(user.ObjectMeta.Name, minOf(len(user.ObjectMeta.Name), searchIndexDefaultLen))...)
return fieldIndexes, nil
}
func groupSearchIndexer(obj interface{}) ([]string, error) {
group, ok := obj.(*v3.Group)
if !ok {
return []string{}, nil
}
var fieldIndexes []string
fieldIndexes = append(fieldIndexes, indexField(group.DisplayName, minOf(len(group.DisplayName), searchIndexDefaultLen))...)
fieldIndexes = append(fieldIndexes, indexField(group.ObjectMeta.Name, minOf(len(group.ObjectMeta.Name), searchIndexDefaultLen))...)
return fieldIndexes, nil
}
func minOf(length int, defaultLen int) int {
if length < defaultLen {
return length
}
return defaultLen
}
func indexField(field string, maxindex int) []string {
var fieldIndexes []string
for i := 2; i <= maxindex; i++ {
fieldIndexes = append(fieldIndexes, field[0:i])
}
return fieldIndexes
}
func (l *Provider) CanAccessWithGroupProviders(userPrincipalID string, groupPrincipals []v3.Principal) (bool, error) {
userID := strings.TrimPrefix(userPrincipalID, Name+"://")
user, err := l.userLister.Get("", userID)
if err != nil {
return false, err
}
if user.Username != "" {
return true, nil
}
for _, principalID := range user.PrincipalIDs {
if strings.HasPrefix(principalID, "system://") {
return true, nil
}
}
return false, nil
}