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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* General Structures Layout
* -------------------------
*
* This is a simplified diagram showing the relationship between most of the
* main structures.
*
* +-------------------+
* | SMB_INFO |
* +-------------------+
* |
* |
* v
* +-------------------+ +-------------------+ +-------------------+
* | SESSION |<----->| SESSION |......| SESSION |
* +-------------------+ +-------------------+ +-------------------+
* |
* |
* v
* +-------------------+ +-------------------+ +-------------------+
* | USER |<----->| USER |......| USER |
* +-------------------+ +-------------------+ +-------------------+
* |
* |
* v
* +-------------------+ +-------------------+ +-------------------+
* | TREE |<----->| TREE |......| TREE |
* +-------------------+ +-------------------+ +-------------------+
* | |
* | |
* | v
* | +-------+ +-------+ +-------+
* | | OFILE |<----->| OFILE |......| OFILE |
* | +-------+ +-------+ +-------+
* |
* |
* v
* +-------+ +------+ +------+
* | ODIR |<----->| ODIR |......| ODIR |
* +-------+ +------+ +------+
*
*
* User State Machine
* ------------------
*
* +-----------------------------+ T0
* | SMB_USER_STATE_LOGGED_IN |<----------- Creation/Allocation
* +-----------------------------+
* |
* | T1
* |
* v
* +-----------------------------+
* | SMB_USER_STATE_LOGGING_OFF |
* +-----------------------------+
* |
* | T2
* |
* v
* +-----------------------------+ T3
* | SMB_USER_STATE_LOGGED_OFF |----------> Deletion/Free
* +-----------------------------+
*
* SMB_USER_STATE_LOGGED_IN
*
* While in this state:
* - The user is queued in the list of users of his session.
* - References will be given out if the user is looked up.
* - The user can access files and pipes.
*
* SMB_USER_STATE_LOGGING_OFF
*
* While in this state:
* - The user is queued in the list of users of his session.
* - References will not be given out if the user is looked up.
* - The trees the user connected are being disconnected.
* - The resources associated with the user remain.
*
* SMB_USER_STATE_LOGGING_OFF
*
* While in this state:
* - The user is queued in the list of users of his session.
* - References will not be given out if the user is looked up.
* - The user has no more trees connected.
* - The resources associated with the user remain.
*
* Transition T0
*
* This transition occurs in smb_user_login(). A new user is created and
* added to the list of users of a session.
*
* Transition T1
*
* This transition occurs in smb_user_logoff().
*
* Transition T2
*
* This transition occurs in smb_user_release(). The resources associated
* with the user are deleted as well as the user. For the transition to
* occur, the user must be in the SMB_USER_STATE_LOGGED_OFF state and the
* reference count be zero.
*
* Comments
* --------
*
* The state machine of the user structures is controlled by 3 elements:
* - The list of users of the session he belongs to.
* - The mutex embedded in the structure itself.
* - The reference count.
*
* There's a mutex embedded in the user structure used to protect its fields
* and there's a lock embedded in the list of users of a session. To
* increment or to decrement the reference count the mutex must be entered.
* To insert the user into the list of users of the session and to remove
* the user from it, the lock must be entered in RW_WRITER mode.
*
* Rules of access to a user structure:
*
* 1) In order to avoid deadlocks, when both (mutex and lock of the session
* list) have to be entered, the lock must be entered first.
*
* 2) All actions applied to a user require a reference count.
*
* 3) There are 2 ways of getting a reference count. One is when the user
* logs in. The other when the user is looked up. This translates into
* 3 functions: smb_user_login(), smb_user_lookup_by_uid() and
* smb_user_lookup_by_credentials.
*
* It should be noted that the reference count of a user registers the
* number of references to the user in other structures (such as an smb
* request). The reference count is not incremented in these 2 instances:
*
* 1) The user is logged in. An user is anchored by his state. If there's
* no activity involving a user currently logged in, the reference
* count of that user is zero.
*
* 2) The user is queued in the list of users of the session. The fact of
* being queued in that list is NOT registered by incrementing the
* reference count.
*/
#include <smbsrv/smb_kproto.h>
#include <smbsrv/smb_door_svc.h>
#define ADMINISTRATORS_SID "S-1-5-32-544"
static smb_sid_t *smb_admins_sid = NULL;
static boolean_t smb_user_is_logged_in(smb_user_t *);
static int smb_user_enum_private(smb_user_t *, smb_svcenum_t *);
static void smb_user_delete(smb_user_t *user);
static smb_tree_t *smb_user_get_tree(smb_llist_t *, smb_tree_t *);
int
smb_user_init(void)
{
if (smb_admins_sid != NULL)
return (0);
if ((smb_admins_sid = smb_sid_fromstr(ADMINISTRATORS_SID)) == NULL)
return (-1);
return (0);
}
void
smb_user_fini(void)
{
if (smb_admins_sid != NULL) {
smb_sid_free(smb_admins_sid);
smb_admins_sid = NULL;
}
}
/*
* smb_user_login
*
*
*/
smb_user_t *
smb_user_login(
smb_session_t *session,
cred_t *cr,
char *domain_name,
char *account_name,
uint32_t flags,
uint32_t privileges,
uint32_t audit_sid)
{
smb_user_t *user;
ASSERT(session);
ASSERT(session->s_magic == SMB_SESSION_MAGIC);
ASSERT(cr);
ASSERT(account_name);
ASSERT(domain_name);
user = kmem_cache_alloc(session->s_server->si_cache_user, KM_SLEEP);
bzero(user, sizeof (smb_user_t));
user->u_refcnt = 1;
user->u_session = session;
user->u_server = session->s_server;
user->u_logon_time = gethrestime_sec();
user->u_flags = flags;
user->u_privileges = privileges;
user->u_name_len = strlen(account_name) + 1;
user->u_domain_len = strlen(domain_name) + 1;
user->u_name = smb_strdup(account_name);
user->u_domain = smb_strdup(domain_name);
user->u_cred = cr;
user->u_privcred = smb_cred_create_privs(cr, privileges);
user->u_audit_sid = audit_sid;
if (!smb_idpool_alloc(&session->s_uid_pool, &user->u_uid)) {
if (!smb_idpool_constructor(&user->u_tid_pool)) {
smb_llist_constructor(&user->u_tree_list,
sizeof (smb_tree_t), offsetof(smb_tree_t, t_lnd));
mutex_init(&user->u_mutex, NULL, MUTEX_DEFAULT, NULL);
crhold(user->u_cred);
if (user->u_privcred)
crhold(user->u_privcred);
user->u_state = SMB_USER_STATE_LOGGED_IN;
user->u_magic = SMB_USER_MAGIC;
smb_llist_enter(&session->s_user_list, RW_WRITER);
smb_llist_insert_tail(&session->s_user_list, user);
smb_llist_exit(&session->s_user_list);
atomic_inc_32(&session->s_server->sv_open_users);
return (user);
}
smb_idpool_free(&session->s_uid_pool, user->u_uid);
}
smb_mfree(user->u_name);
smb_mfree(user->u_domain);
kmem_cache_free(session->s_server->si_cache_user, user);
return (NULL);
}
/*
* Create a new user based on an existing user, used to support
* additional SessionSetupX requests for a user on a session.
*
* Assumes the caller has a reference on the original user from
* a user_lookup_by_x call.
*/
smb_user_t *
smb_user_dup(
smb_user_t *orig_user)
{
smb_user_t *user;
ASSERT(orig_user->u_magic == SMB_USER_MAGIC);
ASSERT(orig_user->u_refcnt);
user = smb_user_login(orig_user->u_session, orig_user->u_cred,
orig_user->u_domain, orig_user->u_name, orig_user->u_flags,
orig_user->u_privileges, orig_user->u_audit_sid);
if (user)
smb_user_nonauth_logon(orig_user->u_audit_sid);
return (user);
}
/*
* smb_user_logoff
*
* Change the user state and disconnect trees.
* The user list must not be entered or modified here.
*/
void
smb_user_logoff(
smb_user_t *user)
{
ASSERT(user->u_magic == SMB_USER_MAGIC);
mutex_enter(&user->u_mutex);
ASSERT(user->u_refcnt);
switch (user->u_state) {
case SMB_USER_STATE_LOGGED_IN: {
/*
* The user is moved into a state indicating that the log off
* process has started.
*/
user->u_state = SMB_USER_STATE_LOGGING_OFF;
mutex_exit(&user->u_mutex);
atomic_dec_32(&user->u_server->sv_open_users);
/*
* All the trees hanging off of this user are disconnected.
*/
smb_user_disconnect_trees(user);
smb_user_auth_logoff(user->u_audit_sid);
mutex_enter(&user->u_mutex);
user->u_state = SMB_USER_STATE_LOGGED_OFF;
break;
}
case SMB_USER_STATE_LOGGED_OFF:
case SMB_USER_STATE_LOGGING_OFF:
break;
default:
ASSERT(0);
break;
}
mutex_exit(&user->u_mutex);
}
/*
* smb_user_logoff_all
*
*
*/
void
smb_user_logoff_all(
smb_session_t *session)
{
smb_user_t *user;
ASSERT(session);
ASSERT(session->s_magic == SMB_SESSION_MAGIC);
smb_llist_enter(&session->s_user_list, RW_READER);
user = smb_llist_head(&session->s_user_list);
while (user) {
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(user->u_session == session);
mutex_enter(&user->u_mutex);
switch (user->u_state) {
case SMB_USER_STATE_LOGGED_IN:
/* The user is still logged in. */
user->u_refcnt++;
mutex_exit(&user->u_mutex);
smb_llist_exit(&session->s_user_list);
smb_user_logoff(user);
smb_user_release(user);
smb_llist_enter(&session->s_user_list, RW_READER);
user = smb_llist_head(&session->s_user_list);
break;
case SMB_USER_STATE_LOGGING_OFF:
case SMB_USER_STATE_LOGGED_OFF:
/*
* The user is logged off or logging off.
*/
mutex_exit(&user->u_mutex);
user = smb_llist_next(&session->s_user_list, user);
break;
default:
ASSERT(0);
mutex_exit(&user->u_mutex);
user = smb_llist_next(&session->s_user_list, user);
break;
}
}
smb_llist_exit(&session->s_user_list);
}
/*
* Take a reference on a user.
*/
boolean_t
smb_user_hold(smb_user_t *user)
{
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
mutex_enter(&user->u_mutex);
if (smb_user_is_logged_in(user)) {
user->u_refcnt++;
mutex_exit(&user->u_mutex);
return (B_TRUE);
}
mutex_exit(&user->u_mutex);
return (B_FALSE);
}
/*
* smb_user_release
*
*
*/
void
smb_user_release(
smb_user_t *user)
{
ASSERT(user->u_magic == SMB_USER_MAGIC);
mutex_enter(&user->u_mutex);
ASSERT(user->u_refcnt);
user->u_refcnt--;
switch (user->u_state) {
case SMB_USER_STATE_LOGGED_OFF:
if (user->u_refcnt == 0) {
mutex_exit(&user->u_mutex);
smb_user_delete(user);
return;
}
break;
case SMB_USER_STATE_LOGGED_IN:
case SMB_USER_STATE_LOGGING_OFF:
break;
default:
ASSERT(0);
break;
}
mutex_exit(&user->u_mutex);
}
/*
* smb_user_lookup_by_uid
*
* Find the appropriate user for this request. The request credentials
* set here may be overridden by the tree credentials. In domain mode,
* the user and tree credentials should be the same. In share mode, the
* tree credentials (defined in the share definition) should override
* the user credentials.
*/
smb_user_t *
smb_user_lookup_by_uid(
smb_session_t *session,
uint16_t uid)
{
smb_user_t *user;
ASSERT(session);
ASSERT(session->s_magic == SMB_SESSION_MAGIC);
smb_llist_enter(&session->s_user_list, RW_READER);
user = smb_llist_head(&session->s_user_list);
while (user) {
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(user->u_session == session);
if (user->u_uid == uid) {
if (smb_user_hold(user)) {
smb_llist_exit(&session->s_user_list);
return (user);
} else {
smb_llist_exit(&session->s_user_list);
return (NULL);
}
}
user = smb_llist_next(&session->s_user_list, user);
}
smb_llist_exit(&session->s_user_list);
return (NULL);
}
/*
* smb_user_lookup_by_state
*
* This function returns the first user in the logged in state. If the user
* provided is NULL the search starts from the beginning of the list passed
* in. It a user is provided the search starts just after that user.
*/
smb_user_t *
smb_user_lookup_by_state(
smb_session_t *session,
smb_user_t *user)
{
smb_llist_t *lst;
smb_user_t *next;
ASSERT(session);
ASSERT(session->s_magic == SMB_SESSION_MAGIC);
lst = &session->s_user_list;
smb_llist_enter(lst, RW_READER);
if (user) {
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(user->u_refcnt);
next = smb_llist_next(lst, user);
} else {
next = smb_llist_head(lst);
}
while (next) {
ASSERT(next->u_magic == SMB_USER_MAGIC);
ASSERT(next->u_session == session);
if (smb_user_hold(next))
break;
next = smb_llist_next(lst, next);
}
smb_llist_exit(lst);
return (next);
}
/*
* Find a tree by tree-id.
*/
smb_tree_t *
smb_user_lookup_tree(
smb_user_t *user,
uint16_t tid)
{
smb_tree_t *tree;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
smb_llist_enter(&user->u_tree_list, RW_READER);
tree = smb_llist_head(&user->u_tree_list);
while (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
ASSERT(tree->t_user == user);
if (tree->t_tid == tid) {
if (smb_tree_hold(tree)) {
smb_llist_exit(&user->u_tree_list);
return (tree);
} else {
smb_llist_exit(&user->u_tree_list);
return (NULL);
}
}
tree = smb_llist_next(&user->u_tree_list, tree);
}
smb_llist_exit(&user->u_tree_list);
return (NULL);
}
/*
* Find the first connected tree that matches the specified sharename.
* If the specified tree is NULL the search starts from the beginning of
* the user's tree list. If a tree is provided the search starts just
* after that tree.
*/
smb_tree_t *
smb_user_lookup_share(
smb_user_t *user,
const char *sharename,
smb_tree_t *tree)
{
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(sharename);
smb_llist_enter(&user->u_tree_list, RW_READER);
if (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
ASSERT(tree->t_user == user);
tree = smb_llist_next(&user->u_tree_list, tree);
} else {
tree = smb_llist_head(&user->u_tree_list);
}
while (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
ASSERT(tree->t_user == user);
if (smb_strcasecmp(tree->t_sharename, sharename, 0) == 0) {
if (smb_tree_hold(tree)) {
smb_llist_exit(&user->u_tree_list);
return (tree);
}
}
tree = smb_llist_next(&user->u_tree_list, tree);
}
smb_llist_exit(&user->u_tree_list);
return (NULL);
}
/*
* Find the first connected tree that matches the specified volume name.
* If the specified tree is NULL the search starts from the beginning of
* the user's tree list. If a tree is provided the search starts just
* after that tree.
*/
smb_tree_t *
smb_user_lookup_volume(
smb_user_t *user,
const char *name,
smb_tree_t *tree)
{
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(name);
smb_llist_enter(&user->u_tree_list, RW_READER);
if (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
ASSERT(tree->t_user == user);
tree = smb_llist_next(&user->u_tree_list, tree);
} else {
tree = smb_llist_head(&user->u_tree_list);
}
while (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
ASSERT(tree->t_user == user);
if (smb_strcasecmp(tree->t_volume, name, 0) == 0) {
if (smb_tree_hold(tree)) {
smb_llist_exit(&user->u_tree_list);
return (tree);
}
}
tree = smb_llist_next(&user->u_tree_list, tree);
}
smb_llist_exit(&user->u_tree_list);
return (NULL);
}
/*
* Disconnect all trees that match the specified client process-id.
*/
void
smb_user_close_pid(
smb_user_t *user,
uint16_t pid)
{
smb_tree_t *tree;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
tree = smb_user_get_tree(&user->u_tree_list, NULL);
while (tree) {
smb_tree_t *next;
ASSERT(tree->t_user == user);
smb_tree_close_pid(tree, pid);
next = smb_user_get_tree(&user->u_tree_list, tree);
smb_tree_release(tree);
tree = next;
}
}
/*
* Disconnect all trees that this user has connected.
*/
void
smb_user_disconnect_trees(
smb_user_t *user)
{
smb_tree_t *tree;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
tree = smb_user_get_tree(&user->u_tree_list, NULL);
while (tree) {
ASSERT(tree->t_user == user);
smb_tree_disconnect(tree, B_TRUE);
smb_tree_release(tree);
tree = smb_user_get_tree(&user->u_tree_list, NULL);
}
}
/*
* Disconnect all trees that match the specified share name.
*/
void
smb_user_disconnect_share(
smb_user_t *user,
const char *sharename)
{
smb_tree_t *tree;
smb_tree_t *next;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(user->u_refcnt);
tree = smb_user_lookup_share(user, sharename, NULL);
while (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
smb_session_cancel_requests(user->u_session, tree, NULL);
smb_tree_disconnect(tree, B_TRUE);
next = smb_user_lookup_share(user, sharename, tree);
smb_tree_release(tree);
tree = next;
}
}
/*
* Close a file by its unique id.
*/
int
smb_user_fclose(smb_user_t *user, uint32_t uniqid)
{
smb_llist_t *tree_list;
smb_tree_t *tree;
int rc = ENOENT;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
tree_list = &user->u_tree_list;
ASSERT(tree_list);
smb_llist_enter(tree_list, RW_READER);
tree = smb_llist_head(tree_list);
while ((tree != NULL) && (rc == ENOENT)) {
ASSERT(tree->t_user == user);
if (smb_tree_hold(tree)) {
rc = smb_tree_fclose(tree, uniqid);
smb_tree_release(tree);
}
tree = smb_llist_next(tree_list, tree);
}
smb_llist_exit(tree_list);
return (rc);
}
/*
* Determine whether or not the user is an administrator.
* Members of the administrators group have administrative rights.
*/
boolean_t
smb_user_is_admin(
smb_user_t *user)
{
cred_t *u_cred;
ASSERT(user);
u_cred = user->u_cred;
ASSERT(u_cred);
if (smb_admins_sid == NULL)
return (B_FALSE);
if (smb_cred_is_member(u_cred, smb_admins_sid))
return (B_TRUE);
return (B_FALSE);
}
/*
* This function should be called with a hold on the user.
*/
boolean_t
smb_user_namecmp(smb_user_t *user, const char *name)
{
char *fq_name;
boolean_t match;
if (smb_strcasecmp(name, user->u_name, 0) == 0)
return (B_TRUE);
fq_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
(void) snprintf(fq_name, MAXNAMELEN, "%s\\%s",
user->u_domain, user->u_name);
match = (smb_strcasecmp(name, fq_name, 0) == 0);
if (!match) {
(void) snprintf(fq_name, MAXNAMELEN, "%s@%s",
user->u_name, user->u_domain);
match = (smb_strcasecmp(name, fq_name, 0) == 0);
}
kmem_free(fq_name, MAXNAMELEN);
return (match);
}
/*
* If the enumeration request is for user data, handle the request
* here. Otherwise, pass it on to the trees.
*
* This function should be called with a hold on the user.
*/
int
smb_user_enum(smb_user_t *user, smb_svcenum_t *svcenum)
{
smb_tree_t *tree;
smb_tree_t *next;
int rc;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
if (svcenum->se_type == SMB_SVCENUM_TYPE_USER)
return (smb_user_enum_private(user, svcenum));
tree = smb_user_get_tree(&user->u_tree_list, NULL);
while (tree) {
ASSERT(tree->t_user == user);
rc = smb_tree_enum(tree, svcenum);
if (rc != 0) {
smb_tree_release(tree);
break;
}
next = smb_user_get_tree(&user->u_tree_list, tree);
smb_tree_release(tree);
tree = next;
}
return (rc);
}
/* *************************** Static Functions ***************************** */
/*
* Determine whether or not a user is logged in.
* Typically, a reference can only be taken on a logged-in user.
*
* This is a private function and must be called with the user
* mutex held.
*/
static boolean_t
smb_user_is_logged_in(smb_user_t *user)
{
switch (user->u_state) {
case SMB_USER_STATE_LOGGED_IN:
return (B_TRUE);
case SMB_USER_STATE_LOGGING_OFF:
case SMB_USER_STATE_LOGGED_OFF:
return (B_FALSE);
default:
ASSERT(0);
return (B_FALSE);
}
}
/*
* smb_user_delete
*/
static void
smb_user_delete(
smb_user_t *user)
{
smb_session_t *session;
ASSERT(user);
ASSERT(user->u_magic == SMB_USER_MAGIC);
ASSERT(user->u_refcnt == 0);
ASSERT(user->u_state == SMB_USER_STATE_LOGGED_OFF);
session = user->u_session;
/*
* Let's remove the user from the list of users of the session. This
* has to be done before any resources associated with the user are
* deleted.
*/
smb_llist_enter(&session->s_user_list, RW_WRITER);
smb_llist_remove(&session->s_user_list, user);
smb_llist_exit(&session->s_user_list);
user->u_magic = (uint32_t)~SMB_USER_MAGIC;
mutex_destroy(&user->u_mutex);
smb_llist_destructor(&user->u_tree_list);
smb_idpool_destructor(&user->u_tid_pool);
smb_idpool_free(&session->s_uid_pool, user->u_uid);
crfree(user->u_cred);
if (user->u_privcred)
crfree(user->u_privcred);
smb_mfree(user->u_name);
smb_mfree(user->u_domain);
kmem_cache_free(user->u_server->si_cache_user, user);
}
/*
* Get the next connected tree in the list. A reference is taken on
* the tree, which can be released later with smb_tree_release().
*
* If the specified tree is NULL the search starts from the beginning of
* the tree list. If a tree is provided the search starts just after
* that tree.
*
* Returns NULL if there are no connected trees in the list.
*/
static smb_tree_t *
smb_user_get_tree(
smb_llist_t *tree_list,
smb_tree_t *tree)
{
ASSERT(tree_list);
smb_llist_enter(tree_list, RW_READER);
if (tree) {
ASSERT(tree->t_magic == SMB_TREE_MAGIC);
tree = smb_llist_next(tree_list, tree);
} else {
tree = smb_llist_head(tree_list);
}
while (tree) {
if (smb_tree_hold(tree))
break;
tree = smb_llist_next(tree_list, tree);
}
smb_llist_exit(tree_list);
return (tree);
}
cred_t *
smb_user_getcred(smb_user_t *user)
{
return (user->u_cred);
}
cred_t *
smb_user_getprivcred(smb_user_t *user)
{
return ((user->u_privcred)? user->u_privcred : user->u_cred);
}
/*
* Private function to support smb_user_enum.
*/
static int
smb_user_enum_private(smb_user_t *user, smb_svcenum_t *svcenum)
{
uint8_t *pb;
uint_t nbytes;
int rc;
if (svcenum->se_nskip > 0) {
svcenum->se_nskip--;
return (0);
}
if (svcenum->se_nitems >= svcenum->se_nlimit) {
svcenum->se_nitems = svcenum->se_nlimit;
return (0);
}
pb = &svcenum->se_buf[svcenum->se_bused];
rc = smb_user_netinfo_encode(user, pb, svcenum->se_bavail, &nbytes);
if (rc == 0) {
svcenum->se_bavail -= nbytes;
svcenum->se_bused += nbytes;
svcenum->se_nitems++;
}
return (rc);
}
/*
* Encode the NetInfo for a user into a buffer. NetInfo contains
* information that is often needed in user space to support RPC
* requests.
*/
int
smb_user_netinfo_encode(smb_user_t *user, uint8_t *buf, size_t buflen,
uint32_t *nbytes)
{
smb_netuserinfo_t info;
int rc;
smb_user_netinfo_init(user, &info);
rc = smb_netuserinfo_encode(&info, buf, buflen, nbytes);
smb_user_netinfo_fini(&info);
return (rc);
}
void
smb_user_netinfo_init(smb_user_t *user, smb_netuserinfo_t *info)
{
smb_session_t *session;
char *buf;
ASSERT(user);
ASSERT(user->u_domain);
ASSERT(user->u_name);
session = user->u_session;
ASSERT(session);
ASSERT(session->workstation);
info->ui_session_id = session->s_kid;
info->ui_native_os = session->native_os;
info->ui_ipaddr = session->ipaddr;
info->ui_numopens = session->s_file_cnt;
info->ui_uid = user->u_uid;
info->ui_logon_time = user->u_logon_time;
info->ui_flags = user->u_flags;
info->ui_domain_len = user->u_domain_len;
info->ui_domain = smb_strdup(user->u_domain);
info->ui_account_len = user->u_name_len;
info->ui_account = smb_strdup(user->u_name);
buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
smb_session_getclient(session, buf, MAXNAMELEN);
info->ui_workstation_len = strlen(buf) + 1;
info->ui_workstation = smb_strdup(buf);
kmem_free(buf, MAXNAMELEN);
}
void
smb_user_netinfo_fini(smb_netuserinfo_t *info)
{
if (info == NULL)
return;
if (info->ui_domain)
smb_mfree(info->ui_domain);
if (info->ui_account)
smb_mfree(info->ui_account);
if (info->ui_workstation)
smb_mfree(info->ui_workstation);
bzero(info, sizeof (smb_netuserinfo_t));
}
|