forked from tinode/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.go
690 lines (599 loc) · 19.7 KB
/
user.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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
package main
import (
"log"
"time"
"github.com/tinode/chat/server/auth"
"github.com/tinode/chat/server/push"
"github.com/tinode/chat/server/store"
"github.com/tinode/chat/server/store/types"
)
// Process request for a new account.
func replyCreateUser(s *Session, msg *ClientComMessage, rec *auth.Rec) {
// The session cannot authenticate with the new account because it's already authenticated.
if msg.Acc.Login && (!s.uid.IsZero() || rec != nil) {
s.queueOut(ErrAlreadyAuthenticated(msg.id, "", msg.timestamp))
log.Println("create user: login requested while authenticated", s.sid)
return
}
// Find authenticator for the requested scheme.
authhdl := store.GetLogicalAuthHandler(msg.Acc.Scheme)
if authhdl == nil {
// New accounts must have an authentication scheme
s.queueOut(ErrMalformed(msg.id, "", msg.timestamp))
log.Println("create user: unknown auth handler", s.sid)
return
}
// Check if login is unique.
if ok, err := authhdl.IsUnique(msg.Acc.Secret); !ok {
log.Println("create user: auth secret is not unique", err, s.sid)
s.queueOut(decodeStoreError(err, msg.id, "", msg.timestamp,
map[string]interface{}{"what": "auth"}))
return
}
var user types.User
var private interface{}
// Ensure tags are unique and not restricted.
if tags := normalizeTags(msg.Acc.Tags); tags != nil {
if !restrictedTagsEqual(tags, nil, globals.immutableTagNS) {
log.Println("create user: attempt to directly assign restricted tags", s.sid)
msg := ErrPermissionDenied(msg.id, "", msg.timestamp)
msg.Ctrl.Params = map[string]interface{}{"what": "tags"}
s.queueOut(msg)
return
}
user.Tags = tags
}
// Pre-check credentials for validity. We don't know user's access level
// consequently cannot check presence of required credentials. Must do that later.
creds := normalizeCredentials(msg.Acc.Cred, true)
for i := range creds {
cr := &creds[i]
vld := store.GetValidator(cr.Method)
if err := vld.PreCheck(cr.Value, cr.Params); err != nil {
log.Println("create user: failed credential pre-check", cr, err, s.sid)
s.queueOut(decodeStoreError(err, msg.Acc.Id, "", msg.timestamp,
map[string]interface{}{"what": cr.Method}))
return
}
}
// Assign default access values in case the acc creator has not provided them
user.Access.Auth = getDefaultAccess(types.TopicCatP2P, true)
user.Access.Anon = getDefaultAccess(types.TopicCatP2P, false)
// Assign actual access values, public and private.
if msg.Acc.Desc != nil {
if msg.Acc.Desc.DefaultAcs != nil {
if msg.Acc.Desc.DefaultAcs.Auth != "" {
user.Access.Auth.UnmarshalText([]byte(msg.Acc.Desc.DefaultAcs.Auth))
user.Access.Auth &= types.ModeCP2P
if user.Access.Auth != types.ModeNone {
user.Access.Auth |= types.ModeApprove
}
}
if msg.Acc.Desc.DefaultAcs.Anon != "" {
user.Access.Anon.UnmarshalText([]byte(msg.Acc.Desc.DefaultAcs.Anon))
user.Access.Anon &= types.ModeCP2P
if user.Access.Anon != types.ModeNone {
user.Access.Anon |= types.ModeApprove
}
}
}
if !isNullValue(msg.Acc.Desc.Public) {
user.Public = msg.Acc.Desc.Public
}
if !isNullValue(msg.Acc.Desc.Private) {
private = msg.Acc.Desc.Private
}
}
// Create user record in the database.
if _, err := store.Users.Create(&user, private); err != nil {
log.Println("create user: failed to create user", err, s.sid)
s.queueOut(ErrUnknown(msg.id, "", msg.timestamp))
return
}
// Add authentication record. The authhdl.AddRecord may change tags.
rec, err := authhdl.AddRecord(&auth.Rec{Uid: user.Uid(), Tags: user.Tags}, msg.Acc.Secret)
if err != nil {
log.Println("create user: add auth record failed", err, s.sid)
// Attempt to delete incomplete user record
store.Users.Delete(user.Uid(), false)
s.queueOut(decodeStoreError(err, msg.id, "", msg.timestamp, nil))
return
}
// When creating an account, the user must provide all required credentials.
// If any are missing, reject the request.
if len(creds) < len(globals.authValidators[rec.AuthLevel]) {
log.Println("create user: missing credentials; have:", creds, "want:", globals.authValidators[rec.AuthLevel], s.sid)
// Attempt to delete incomplete user record
store.Users.Delete(user.Uid(), false)
_, missing := stringSliceDelta(globals.authValidators[rec.AuthLevel], credentialMethods(creds))
s.queueOut(decodeStoreError(types.ErrPolicy, msg.id, "", msg.timestamp,
map[string]interface{}{"creds": missing}))
return
}
// Save credentials, update tags if necessary.
tmpToken, _, _ := store.GetLogicalAuthHandler("token").GenSecret(&auth.Rec{
Uid: user.Uid(),
AuthLevel: auth.LevelNone,
Lifetime: time.Hour * 24,
Features: auth.FeatureNoLogin})
validated, err := addCreds(user.Uid(), creds, rec.Tags, s.lang, tmpToken)
if err != nil {
// Delete incomplete user record.
store.Users.Delete(user.Uid(), false)
log.Println("create user: failed to save or validate credential", err, s.sid)
s.queueOut(decodeStoreError(err, msg.id, "", msg.timestamp, nil))
return
}
var reply *ServerComMessage
if msg.Acc.Login {
// Process user's login request.
_, missing := stringSliceDelta(globals.authValidators[rec.AuthLevel], validated)
reply = s.onLogin(msg.id, msg.timestamp, rec, missing)
} else {
// Not using the new account for logging in.
reply = NoErrCreated(msg.id, "", msg.timestamp)
reply.Ctrl.Params = map[string]interface{}{
"user": user.Uid().UserId(),
"authlvl": rec.AuthLevel.String(),
}
}
params := reply.Ctrl.Params.(map[string]interface{})
params["desc"] = &MsgTopicDesc{
CreatedAt: &user.CreatedAt,
UpdatedAt: &user.UpdatedAt,
DefaultAcs: &MsgDefaultAcsMode{
Auth: user.Access.Auth.String(),
Anon: user.Access.Anon.String()},
Public: user.Public,
Private: private}
s.queueOut(reply)
pluginAccount(&user, plgActCreate)
}
// Process update to an account:
// * Authentication update, i.e. login/password change
// * Credentials update
func replyUpdateUser(s *Session, msg *ClientComMessage, rec *auth.Rec) {
if s.uid.IsZero() && rec == nil {
// Session is not authenticated and no token provided.
log.Println("replyUpdateUser: not a new account and not authenticated", s.sid)
s.queueOut(ErrPermissionDenied(msg.id, "", msg.timestamp))
return
} else if msg.from != "" && rec != nil {
// Two UIDs: one from msg.from, one from token. Ambigous, reject.
log.Println("replyUpdateUser: got both authenticated session and token", s.sid)
s.queueOut(ErrMalformed(msg.id, "", msg.timestamp))
return
}
userId := msg.from
authLvl := auth.Level(msg.authLvl)
if rec != nil {
userId = rec.Uid.UserId()
authLvl = rec.AuthLevel
}
if msg.Acc.User != "" && msg.Acc.User != userId {
if s.authLvl != auth.LevelRoot {
log.Println("replyUpdateUser: attempt to change another's account by non-root", s.sid)
s.queueOut(ErrPermissionDenied(msg.id, "", msg.timestamp))
return
}
// Root is editing someone else's account.
userId = msg.Acc.User
authLvl = auth.ParseAuthLevel(msg.Acc.AuthLevel)
}
uid := types.ParseUserId(userId)
if uid.IsZero() || authLvl == auth.LevelNone {
// Either msg.Acc.User or msg.Acc.AuthLevel contains invalid data.
s.queueOut(ErrMalformed(msg.id, "", msg.timestamp))
log.Println("replyUpdateUser: either user id or auth level is missing", s.sid)
return
}
user, err := store.Users.Get(uid)
if user == nil && err == nil {
err = types.ErrNotFound
}
if err != nil {
log.Println("replyUpdateUser: failed to fetch user from DB", err, s.sid)
s.queueOut(decodeStoreError(err, msg.id, "", msg.timestamp, nil))
return
}
var params map[string]interface{}
if msg.Acc.Scheme != "" {
err = updateUserAuth(msg, user, rec)
} else if len(msg.Acc.Cred) > 0 {
validated, err := updateCreds(uid, authLvl, msg.Acc.Cred)
if err == nil {
_, missing := stringSliceDelta(globals.authValidators[authLvl], validated)
if len(missing) > 0 {
params = map[string]interface{}{"cred": missing}
}
}
} else {
err = types.ErrMalformed
}
if err != nil {
log.Println("replyUpdateUser: failed to update user", err, s.sid)
s.queueOut(decodeStoreError(err, msg.id, "", msg.timestamp, nil))
return
}
s.queueOut(NoErrParams(msg.id, "", msg.timestamp, params))
// Call plugin with the account update
pluginAccount(user, plgActUpd)
}
// Authentication update
func updateUserAuth(msg *ClientComMessage, user *types.User, rec *auth.Rec) error {
authhdl := store.GetLogicalAuthHandler(msg.Acc.Scheme)
if authhdl != nil {
// Request to update auth of an existing account. Only basic & rest auth are currently supported
// TODO(gene): support adding new auth schemes
rec, err := authhdl.UpdateRecord(&auth.Rec{Uid: user.Uid(), Tags: user.Tags}, msg.Acc.Secret)
if err != nil {
return err
}
// Tags may have been changed by authhdl.UpdateRecord, reset them.
// Can't do much with the error here, so ignoring it.
store.Users.UpdateTags(user.Uid(), nil, nil, rec.Tags)
return nil
}
// Invalid or unknown auth scheme
return types.ErrMalformed
}
// addCreds adds user's credentials. Returns all validated methods, including those validated in this call.
func addCreds(uid types.Uid, creds []MsgCredClient, tags []string, lang string, tmpToken []byte) ([]string, error) {
var validated []string
for i := range creds {
cr := &creds[i]
vld := store.GetValidator(cr.Method)
if vld == nil {
// Ignore unknown validator.
continue
}
if err := vld.Request(uid, cr.Value, lang, cr.Response, tmpToken); err != nil {
return nil, err
}
if cr.Response != "" {
// If response is provided and vld.Request did not return an error, the request was
// successfully validated.
validated = append(validated, cr.Method)
// Generate tags for these confirmed credentials.
if globals.validators[cr.Method].addToTags {
tags = append(tags, cr.Method+":"+cr.Value)
}
}
}
// Save tags potentially changed by the validator.
if len(tags) > 0 {
if err := store.Users.UpdateTags(uid, nil, nil, tags); err != nil {
return nil, err
}
}
return validated, nil
}
// updateCred uses provided credentials to update user's credentials:
// 1. Add new credential.
// 2. Validate earlier added credential
// 3. Remove credential
// Returns validated methods including those validated in this call.
func updateCreds(uid types.Uid, authLvl auth.Level, creds []MsgCredClient) ([]string, error) {
// Check if credential validation is required.
if len(globals.authValidators[authLvl]) == 0 {
return nil, types.ErrUnsupported
}
if len(creds) == 0 {
return nil, nil
}
// There could be multiple validated credentials for the same method thus we are getting a map with count
// for each method.
alreadyValidatedCreds, err := store.Users.GetAllCreds(uid, true)
if err != nil {
return nil, err
}
// Index credential methods.
var methods map[string]int
for _, cred := range alreadyValidatedCreds {
methods[cred.Method]++
}
// Add credentials which are validated in this call.
// Unknown validators are removed.
creds = normalizeCredentials(creds, false)
var tagsToAdd, tagsToRemove []string
for i := range creds {
cr := &creds[i]
if cr.Response == "" {
// Ignore unknown validation type or empty response.
continue
}
vld := store.GetValidator(cr.Method)
value, err := vld.Check(uid, cr.Response)
if err != nil {
// Check failed.
if storeErr, ok := err.(types.StoreError); ok && storeErr == types.ErrCredentials {
// Just an invalid response. Keep credential unvalidated.
continue
}
// Actual error. Report back.
return nil, err
}
// Value could be empty if validated credential was deleted.
if value != "" {
// Check did not return an error: the request was successfully validated.
methods[cr.Method]++
// Add validated credential to user's tags.
if globals.validators[cr.Method].addToTags {
tagsToAdd = append(tagsToAdd, cr.Method+":"+value)
}
} else {
// Credential deleted.
methods[cr.Method]--
// Remove deleted credential from user's tags.
if globals.validators[cr.Method].addToTags {
tagsToRemove = append(tagsToRemove, cr.Method+":"+value)
}
}
}
if len(tagsToAdd) > 0 || len(tagsToRemove) > 0 {
// Save update to tags
if err := store.Users.UpdateTags(uid, tagsToAdd, tagsToRemove, nil); err != nil {
return nil, err
}
}
var validated []string
for method, count := range methods {
if count > 0 {
validated = append(validated, method)
}
}
return validated, nil
}
// deleteCred deletes user's credential.
func deleteCred(uid types.Uid, authLvl auth.Level, cred *MsgCredClient) error {
vld := store.GetValidator(cred.Method)
if vld == nil {
// Ignore unknown validation method.
return nil
}
// Is this a required credential for this validation level?
var isRequired bool
for _, method := range globals.authValidators[authLvl] {
if method == cred.Method {
isRequired = true
break
}
}
// If credential is required, make sure the method remains validated even after this credential is deleted.
if isRequired {
// There could be multiple validated credentials for the same method thus we are getting a map with count
// for each method.
// Get validated credentials.
alreadyValidatedCreds, err := store.Users.GetAllCreds(uid, true)
if err != nil {
return err
}
// Index credential methods.
var methods map[string]int
for _, cr := range alreadyValidatedCreds {
methods[cr.Method]++
}
if methods[cred.Method] < 2 {
// Reject: this is the only validated credential and it must be provided.
return types.ErrPolicy
}
}
// The credential is either not required or more than one credential is validated for the given method.
return vld.Remove(uid, cred.Value)
}
// Request to delete a user:
// 1. Disable user's login
// 2. Terminate all user's sessions except the current session.
// 3. Stop all active topics
// 4. Notify other subscribers that topics are being deleted.
// 5. Delete user from the database.
// 6. Report success or failure.
// 7. Terminate user's last session.
func replyDelUser(s *Session, msg *ClientComMessage) {
var reply *ServerComMessage
var uid types.Uid
if msg.Del.User == "" || msg.Del.User == s.uid.UserId() {
// Delete current user.
uid = s.uid
} else if s.authLvl == auth.LevelRoot {
// Delete another user.
uid = types.ParseUserId(msg.Del.User)
if uid.IsZero() {
reply = ErrMalformed(msg.id, "", msg.timestamp)
log.Println("replyDelUser: invalid user ID", msg.Del.User, s.sid)
}
} else {
reply = ErrPermissionDenied(msg.id, "", msg.timestamp)
log.Println("replyDelUser: illegal attempt to delete another user", msg.Del.User, s.sid)
}
if reply == nil {
// Disable all authenticators
authnames := store.GetAuthNames()
for _, name := range authnames {
if err := store.GetAuthHandler(name).DelRecords(uid); err != nil {
// This could be completely benign, i.e. authenticator exists but not used.
log.Println("replyDelUser: failed to delete auth record", uid.UserId(), name, err, s.sid)
}
}
// Terminate all sessions. Skip the current session so the requester gets a response.
globals.sessionStore.EvictUser(uid, s.sid)
// Stop topics where the user is the owner and p2p topics.
done := make(chan bool)
globals.hub.unreg <- &topicUnreg{forUser: uid, del: msg.Del.Hard, done: done}
<-done
// Notify users of interest that the user is gone.
if uoi, err := store.Users.GetSubs(uid, nil); err == nil {
log.Println("notifying users of interest", uoi)
presUsersOfInterestOffline(uid, uoi, "gone")
} else {
log.Println("replyDelUser: failed to send notifications to users", err, s.sid)
}
// Notify subscribers of the group topics where the user was the owner that the topics were deleted.
if ownTopics, err := store.Users.GetOwnTopics(uid, nil); err == nil {
log.Println("deleting owned topics", ownTopics)
for _, topicName := range ownTopics {
if subs, err := store.Topics.GetSubs(topicName, nil); err == nil {
presSubsOfflineOffline(topicName, types.TopicCatGrp, subs, "gone", &presParams{}, s.sid)
}
}
} else {
log.Println("replyDelUser: failed to send notifications to owned topics", err, s.sid)
}
// Delete user's records from the database.
if err := store.Users.Delete(uid, msg.Del.Hard); err != nil {
reply = decodeStoreError(err, msg.id, "", msg.timestamp, nil)
log.Println("replyDelUser: failed to delete user", err, s.sid)
} else {
reply = NoErr(msg.id, "", msg.timestamp)
}
}
s.queueOut(reply)
if s.uid == uid {
// Evict the current session if it belongs to the deleted user.
s.stop <- s.serialize(NoErrEvicted("", "", msg.timestamp))
}
}
type userUpdate struct {
// Single user ID being updated
uid types.Uid
// User IDs being updated
uidList []types.Uid
// Unread count
unread int
// Treat the count as an increment as opposite to the final value.
inc bool
// Optional push notification
pushRcpt *push.Receipt
}
type UserCacheEntry struct {
unread int
topics int
}
var usersCache map[types.Uid]UserCacheEntry
// Initialize users cache.
func usersInit() {
usersCache = make(map[types.Uid]UserCacheEntry)
globals.usersUpdate = make(chan *userUpdate, 1024)
go userUpdater()
}
// Shutdown users cache.
func usersShutdown() {
if globals.statsUpdate != nil {
globals.statsUpdate <- nil
}
}
func usersUpdateUnread(uid types.Uid, val int, inc bool) {
if globals.usersUpdate != nil && (!inc || val != 0) {
select {
case globals.usersUpdate <- &userUpdate{uid: uid, unread: val, inc: inc}:
default:
}
}
}
// Process push notification.
func usersPush(rcpt *push.Receipt) {
if globals.usersUpdate != nil {
select {
case globals.usersUpdate <- &userUpdate{pushRcpt: rcpt}:
default:
}
}
}
// Account users as members of an active topic. Used for cache management.
func usersRegisterTopic(t *Topic, uid types.Uid, add bool) {
if globals.usersUpdate == nil {
return
}
var upd *userUpdate
if t != nil {
if len(t.perUser) == 0 {
// me and fnd topics
return
}
upd = &userUpdate{uidList: make([]types.Uid, len(t.perUser))}
i := 0
for uid := range t.perUser {
upd.uidList[i] = uid
i++
}
} else {
upd = &userUpdate{uidList: make([]types.Uid, 1)}
upd.uidList[0] = uid
}
upd.inc = add
select {
case globals.usersUpdate <- upd:
default:
}
}
// The go routine for processing updates to users cache.
func userUpdater() {
unreadUpdater := func(uid types.Uid, val int, inc bool) int {
uce, ok := usersCache[uid]
if !ok {
// BUG!
panic("attempt to update unread count for user who has not been loaded")
}
if uce.unread < 0 {
count, err := store.Users.GetUnreadCount(uid)
if err != nil {
log.Println("users: failed to load unread count", err)
return -1
}
uce.unread = count
} else if inc {
uce.unread += val
} else {
uce.unread = val
}
usersCache[uid] = uce
return uce.unread
}
for upd := range globals.usersUpdate {
if upd == nil {
globals.usersUpdate = nil
// Dont' care to close the channel.
break
}
if upd.pushRcpt != nil {
for uid, rcptTo := range upd.pushRcpt.To {
// Handle update
unread := unreadUpdater(uid, 1, true)
if unread >= 0 {
rcptTo.Unread = unread
upd.pushRcpt.To[uid] = rcptTo
}
}
push.Push(upd.pushRcpt)
continue
}
if len(upd.uidList) > 0 {
for _, uid := range upd.uidList {
uce, ok := usersCache[uid]
if upd.inc {
if !ok {
// This is a registration of a new user.
// We are not loading unread count here, so set it to -1.
uce.unread = -1
}
uce.topics++
usersCache[uid] = uce
} else if ok {
if uce.topics > 1 {
uce.topics--
usersCache[uid] = uce
} else {
// Remove user from cache
delete(usersCache, uid)
}
} else {
// BUG!
panic("request to unregister user which has not been registered")
}
}
continue
}
unreadUpdater(upd.uid, upd.unread, upd.inc)
}
log.Println("users: shutdown")
}