summaryrefslogtreecommitdiffstats
path: root/private/ntos/ex/handle.c
blob: 53fb66944fe63cab3df5f05f719feff28dddedee (plain) (blame)
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
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
/*++

Copyright (c) 1989-1995  Microsoft Corporation

Module Name:

    handle.c

Abstract:

    This module implements a set of functions for supporting handles.

Author:

    Steve Wood (stevewo) 25-Apr-1989
    David N. Cutler (davec) 17-May-1995 (rewrite)

Revision History:

--*/

#include "exp.h"
#pragma hdrstop

//
// Define global values for the default initial handle entry table size and
// the default size to grow the handle entry table.
//

USHORT ExpDefaultHandleTableSize;
USHORT ExpDefaultHandleTableGrowth;

//
// Decline global structures that link all handle tables together.
//

ERESOURCE HandleTableListLock;
LIST_ENTRY HandleTableListHead;

//
// Define forward referenced prototypes.
//

PHANDLE_TABLE
ExpAllocateHandleTable(
    IN PEPROCESS Process,
    IN ULONG CountToGrowBy
    );

PHANDLE_ENTRY
ExpAllocateHandleTableEntries(
    IN PHANDLE_TABLE HandleTable,
    IN PVOID OldTableEntries,
    IN ULONG OldCountEntries,
    IN ULONG NewCountEntries
    );

#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT, ExInitializeHandleTablePackage)
#pragma alloc_text(PAGE, ExChangeHandle)
#pragma alloc_text(PAGE, ExCreateHandle)
#pragma alloc_text(PAGE, ExCreateHandleTable)
#pragma alloc_text(PAGE, ExDestroyHandle)
#pragma alloc_text(PAGE, ExDestroyHandleTable)
#pragma alloc_text(PAGE, ExDupHandleTable)
#pragma alloc_text(PAGE, ExEnumHandleTable)
#pragma alloc_text(PAGE, ExMapHandleToPointer)
#pragma alloc_text(PAGE, ExRemoveHandleTable)
#pragma alloc_text(PAGE, ExSnapShotHandleTables)
#pragma alloc_text(PAGE, ExpAllocateHandleTable)
#pragma alloc_text(PAGE, ExpAllocateHandleTableEntries)
#endif

VOID
ExInitializeHandleTablePackage(
    VOID
    )

/*++

Routine Description:

    This function initializes static data structures required to support
    handle table.

Arguments:

    None.

Return Value:

    None.

--*/

{

    MM_SYSTEMSIZE SystemSize;

    //
    // Get the configuration size of the host system and set the initial
    // and growth default sizes for handle table as appropriate.
    //
    // N.B. The initial sizes are set such that otimal use of pool block
    //      storage can be obtained.
    //

    SystemSize = MmQuerySystemSize();
    if (SystemSize == MmSmallSystem) {
        ExpDefaultHandleTableSize = 7;
        ExpDefaultHandleTableGrowth = 8;

    } else {
        ExpDefaultHandleTableSize = 15;
        ExpDefaultHandleTableGrowth = 16;
    }

    //
    // Initialize the handle table synchronization resource and listhead.
    //

    InitializeListHead(&HandleTableListHead);
    ExInitializeResource(&HandleTableListLock);
    return;
}

VOID
FASTCALL
ExAcquireHandleTableExclusive(
    IN PHANDLE_TABLE HandleTable
    )

/*++

Routine Description:

    This routine acquires the specified handle table for exclusive access.

    N.B. This routine uses fast locking.

Arguments:

    HandleTable - Supplies a pointer to the handle table that is acquired
        for exclusive access.

Return Value:

    None.

--*/

{

    HANDLE_SYNCH Current;
    HANDLE_SYNCH NewState;

    ASSERT(KeIsExecutingDpc() == FALSE);

    do {

        //
        // Capture the current state of handle table ownership and initialize
        // the proposed new state value.
        //
        // If the handle table is not owned, then attempt to grant exclusive
        // ownership. Otherwise, the handle table is owned either shared or
        // exclusive and the calling thread must wait for exclusive access.
        //

        NewState.Value = Current.Value = *((volatile ULONGLONG *)&HandleTable->State.Value);
        if (Current.u.OwnerCount == 0) {
            NewState.u.OwnerCount = (ULONG)PsGetCurrentThread();
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {
                break;
            }

        } else {

            ASSERT((PETHREAD)(HandleTable->State.u.OwnerCount) != PsGetCurrentThread());

            NewState.u.NumberOfExclusiveWaiters += 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                KeWaitForSingleObject(&HandleTable->ExclusiveWaiters,
                                      Executive,
                                      KernelMode,
                                      FALSE,
                                      NULL);
                break;
            }
        }

    } while (TRUE);

    return;
}

VOID
FASTCALL
ExAcquireHandleTableShared(
    IN PHANDLE_TABLE HandleTable
    )

/*++

Routine Description:

    This routine acquires the specified handle table for shared access.

    N.B. This routines uses fast locking.

Arguments:

    HandleTable - Supplies a pointer to the handle table that is acquired
        for shared access.

Return Value:

    None.

--*/

{

    HANDLE_SYNCH Current;
    HANDLE_SYNCH NewState;

    ASSERT(KeIsExecutingDpc() == FALSE);

    do {

        //
        // Capture the current state of handle table ownership and initialize
        // the proposed new state value.
        //
        // If the handle table is not owned or is owned shared, then attempt
        // to grant shared ownership. Otherwise, the handle table is owned
        // exclusive and the calling thread must wait for shared access.
        //
        // N.B. Shared access is granted if shared access is already granted
        //      regardless of exclusive waiters.
        //

        NewState.Value = Current.Value = *((volatile ULONGLONG *)&HandleTable->State.Value);
        if ((Current.u.OwnerCount == 0) ||
            ((Current.u.OwnerCount & 1) != 0)) {
            NewState.u.OwnerCount = (NewState.u.OwnerCount + 2) | 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {
                break;
            }

        } else {
            NewState.u.NumberOfSharedWaiters += 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                KeWaitForSingleObject(&HandleTable->SharedWaiters,
                                      Executive,
                                      KernelMode,
                                      FALSE,
                                      NULL);
                break;
            }
        }

    } while (TRUE);

    return;
}

VOID
FASTCALL
ExReleaseHandleTableExclusive(
    IN PHANDLE_TABLE HandleTable
    )

/*++

Routine Description:

    This routine releases exclusive access to the specified handle table
    for the current thread.

    N.B. This routine uses fast locking.

Arguments:

    HandleTable - Supplies a pointer to the handle table to release.

Return Value:

    None.

--*/

{

    HANDLE_SYNCH Current;
    HANDLE_SYNCH NewState;
    ULONG Number;

    ASSERT(KeIsExecutingDpc() == FALSE);

    ASSERT(((PETHREAD)HandleTable->State.u.OwnerCount == PsGetCurrentThread()) ||
           (HandleTable->State.u.OwnerCount == 2));

    do {

        //
        // Capture the current state of handle table ownership and initialize
        // the proposed new state value.
        //
        // If there are shared waiters, then attempt to grant shared access to
        // the handle table. Otherwise, it there are exclusive waiters, then
        // attempt to grant exclusive access to the handle table. Otherwise,
        // clear ownership of the handle table.
        //

        NewState.Value = Current.Value = *((volatile ULONGLONG *)&HandleTable->State.Value);
        if ((Number = Current.u.NumberOfSharedWaiters) != 0) {
            NewState.u.NumberOfSharedWaiters = 0;
            NewState.u.OwnerCount = (Number * 2) | 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                KeReleaseSemaphore(&HandleTable->SharedWaiters, 0, Number, FALSE);
                break;
            }

        } else if (Current.u.NumberOfExclusiveWaiters != 0) {
            NewState.u.OwnerCount = 2;
            NewState.u.NumberOfExclusiveWaiters -= 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                KeSetEventBoostPriority(&HandleTable->ExclusiveWaiters,
                                        (PRKTHREAD *)&HandleTable->State.u.OwnerCount);

                break;
            }

        } else {
            NewState.u.OwnerCount = 0;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                break;
            }
        }

    } while (TRUE);

    return;
}

VOID
FASTCALL
ExReleaseHandleTableShared(
    IN PHANDLE_TABLE HandleTable
    )

/*++

Routine Description:

    This routine releases shared access to the specified handle table for
    the current thread.

    N.B. This routine uses fast locking.

Arguments:

    HandleTable - Supplies a pointer to the handle table to release.

Return Value:

    None.

--*/

{

    HANDLE_SYNCH Current;
    HANDLE_SYNCH NewState;
    ULONG Number;

    ASSERT(KeIsExecutingDpc() == FALSE);

    ASSERT((HandleTable->State.u.OwnerCount & 1) == 1);

    do {

        //
        // Capture the current state of handle table ownership and initialize
        // the proposed new state value.
        //
        // If there are exclusive waiters, then attempt to grant exclusive
        // access to the handle table. Otherwise, clear ownership of the
        // handle table (it is not possible to have shared waiters).
        //

        NewState.Value = Current.Value = *((volatile ULONGLONG *)&HandleTable->State.Value);
        if (Current.u.OwnerCount != 3) {
            NewState.u.OwnerCount -= 2;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                break;
            }

        } else if (Current.u.NumberOfExclusiveWaiters != 0) {
            NewState.u.OwnerCount = 2;
            NewState.u.NumberOfExclusiveWaiters -= 1;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                KeSetEventBoostPriority(&HandleTable->ExclusiveWaiters,
                                        (PRKTHREAD *)&HandleTable->State.u.OwnerCount);

                break;
            }

        } else {
            NewState.u.OwnerCount = 0;
            if (ExInterlockedCompareExchange64(&HandleTable->State.Value,
                                               &NewState.Value,
                                               &Current.Value,
                                               &HandleTable->SpinLock) == Current.Value) {

                break;
            }
        }

    } while (TRUE);

    return;
}

BOOLEAN
ExChangeHandle(
    IN PHANDLE_TABLE HandleTable,
    IN HANDLE Handle,
    IN PEX_CHANGE_HANDLE_ROUTINE ChangeRoutine,
    IN ULONG Parameter
    )

/*++

Routine Description:

    This function provides the capability to change the contents of the
    handle entry corrsponding to the specified handle.

Arguments:

    HandleTable - Supplies a pointer to a handle table.

    Handle - Supplies the handle for the handle entry that is changed.

    ChangeRoutine - Supplies a pointer to a function that is called to
        perform the change.

    Parameter - Supplies an uninterpreted parameter that is passed to
        the change routine.

Return Value:

    If the operation was successfully performed, then a value of TRUE
    is returned. Otherwise, a value of FALSE is returned.

--*/

{

    PHANDLE_ENTRY HandleEntry;
    BOOLEAN ReturnValue;
    PHANDLE_ENTRY TableBound;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // Lock the handle table exclusive and check if the handle is valid.
    //

    ReturnValue = FALSE;
    TableIndex = HANDLE_TO_INDEX(Handle);
    ExLockHandleTableExclusive(HandleTable);
    TableBound = HandleTable->TableBound;
    TableEntries = HandleTable->TableEntries;
    if (TableIndex < (ULONG)(TableBound - TableEntries)) {

        //
        // Compute the address of the handle entry and call the change
        // handle function if the handle entry is not free.
        //

        HandleEntry = &TableEntries[TableIndex];
        if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {
            ReturnValue = (*ChangeRoutine)(HandleEntry, Parameter);
        }
    }

    ExUnlockHandleTableExclusive(HandleTable);
    return ReturnValue;
}

HANDLE
ExCreateHandle(
    IN PHANDLE_TABLE HandleTable,
    IN PHANDLE_ENTRY HandleEntry
    )

/*++

Routine Description:

    This function create a handle entry in the specified handle table and
    returns a handle for the entry. If there is insufficient room in the
    handle table for a new entry, then the handle table is expanded if
    possible.

Arguments:

    HandleTable - Supplies a pointer to a handle table

    HandleEntry - Supplies a poiner to the handle entry for which a
        handle entry is created.

Return Value:

    If the handle entry is successfully created, then value of the created
    handle is returned as the function value. Otherwise, a value of NULL is
    returned.

--*/

{

    PLIST_ENTRY FreeEntry;
    ULONG NewCountEntries;
    PHANDLE_ENTRY NewEntry;
    ULONG OldCountEntries;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);
    ASSERT(HandleEntry != NULL);

    //
    // Lock the handle table exclusive and allocate a free handle entry.
    //

    ExLockHandleTableExclusive(HandleTable);
    TableEntries = HandleTable->TableEntries;
    if (IsListEmpty(&TableEntries->ListEntry)) {

        //
        // There are no free entries in the handle entry table. Attempt
        // to grow the size of the handle entry table.
        //

        OldCountEntries = HandleTable->TableBound - TableEntries;
        NewCountEntries = OldCountEntries + HandleTable->CountToGrowBy;
        if (ExpAllocateHandleTableEntries(HandleTable,
                                          TableEntries,
                                          OldCountEntries,
                                          NewCountEntries) == NULL) {

            ExUnlockHandleTableExclusive(HandleTable);
            return NULL;

        } else {
            TableEntries = HandleTable->TableEntries;
        }
    }

    //
    // Remove the first entry from the free list, initialize the handle
    // entry, unlock the handle table, and return the handle value.
    //
    // N.B. The LIFO/FIFO discipline for handle table entires is maintained
    //      at the point handles are destroyed.
    //

    FreeEntry = TableEntries->ListEntry.Flink;
    RemoveEntryList(FreeEntry);
    NewEntry = CONTAINING_RECORD(FreeEntry, HANDLE_ENTRY, ListEntry);
    HandleTable->HandleCount += 1;
    NewEntry->Object = HandleEntry->Object;
    NewEntry->Attributes = HandleEntry->Attributes;
    ExUnlockHandleTableExclusive(HandleTable);
    TableIndex = NewEntry - TableEntries;
    return INDEX_TO_HANDLE(TableIndex);
}

PHANDLE_TABLE
ExCreateHandleTable(
    IN PEPROCESS Process OPTIONAL,
    IN ULONG CountEntries,
    IN ULONG CountToGrowBy
    )

/*++

Routine Description:

    This function creates a handle table and allocates the specified count
    of initial handle entries.

Arguments:

    Process - Supplies an optional pointer to the process against which quota
        will be charged.

    CountEntries - Supplies the initial number of handle entries to allocate.

    CountToGrowBy - Supplies the number of handle entries to grow the handle
        entry table by when it becomes full.

Return Value:

    If a handle table is successfully created, then the address of the
    handle table is returned as the function value. Otherwize, a value
    NULL is returned.

--*/

{

    PHANDLE_TABLE HandleTable;

    PAGED_CODE();

    //
    // If the number of initial handle entries or the number to grow by
    // are not specified, then use the system default value.
    //

    if ((CountEntries <= 1) || (CountEntries > MAXUSHORT)) {
        CountEntries = ExpDefaultHandleTableSize;
    }

    if ((CountToGrowBy <= 1) || (CountToGrowBy > MAXUSHORT)) {
        CountToGrowBy = ExpDefaultHandleTableGrowth;
    }

    //
    // Allocate and initialize a handle table descriptor.
    //

    HandleTable = ExpAllocateHandleTable(Process, CountToGrowBy);

    //
    // If the handle table descriptor was successfully allocated, then
    // allocate the initial handle entry table.
    //

    if (HandleTable != NULL) {
        if (ExpAllocateHandleTableEntries(HandleTable,
                                          NULL,
                                          0,
                                          CountEntries) == NULL) {

            ExDestroyHandleTable(HandleTable, NULL);
            HandleTable = NULL;
        }
    }

    return HandleTable;
}

BOOLEAN
ExDestroyHandle(
    IN PHANDLE_TABLE HandleTable,
    IN HANDLE Handle,
    IN BOOLEAN TableLocked
    )

/*++

Routine Description:

    This function removes a handle from a handle table.

Arguments:

    HandleTable - Supplies a pointer to a handle table

    Handle - Supplies the handle value of the entry to remove.

    TableLocked - Supplies a boolean value that determines whether the
        handle table is already locked.

Return Value:

    If the specified handle is successfully removed, then a value of
    TRUE is returned. Otherwise, a value of FALSE is returned.

--*/

{

    PHANDLE_ENTRY HandleEntry;
    BOOLEAN ResultValue;
    PHANDLE_ENTRY TableBound;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // If the handle table is not already locked, then lock the handle
    // table exclussive.
    //

    ResultValue = FALSE;
    TableIndex = HANDLE_TO_INDEX(Handle);
    if (TableLocked == FALSE) {
        ExLockHandleTableExclusive(HandleTable);
    }

    TableBound = HandleTable->TableBound;
    TableEntries = HandleTable->TableEntries;
    if (TableIndex < (ULONG)(TableBound - TableEntries)) {

        //
        // Compute the address of the handle entry and check if the handle
        // is is use.
        //

        HandleEntry = &TableEntries[TableIndex];
        if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {

            //
            // Insert the handle entry in the free list according to the
            // discipline associated with the handle table and decrement
            // the number of handles.
            //

            HandleTable->HandleCount -= 1;
            if (HandleTable->LifoOrder != FALSE) {
                InsertHeadList(&TableEntries->ListEntry, &HandleEntry->ListEntry);

            } else {
                InsertTailList(&TableEntries->ListEntry, &HandleEntry->ListEntry);
            }

            ResultValue = TRUE;
        }
    }

    //
    // Unlock the handle table if is was locked.
    //

    if (TableLocked == FALSE) {
        ExUnlockHandleTableExclusive(HandleTable);
    }

    return ResultValue;
}

VOID
ExRemoveHandleTable(
    IN PHANDLE_TABLE HandleTable
    )

/*++

Routine Description:

    This function removes the specified handle table from the list of
    handle tables.  Used by PS and ATOM packages to make sure their
    handle tables are not in the list enumerated by the ExSnapShotHandleTables
    routine and the !handle debugger extension.

Arguments:

    HandleTable - Supplies a pointer to a handle table

Return Value:

    None.

--*/

{
    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // Remove the handle table from the handle table list.
    //

    KeEnterCriticalRegion();
    ExAcquireResourceExclusive(&HandleTableListLock, TRUE);
    if (!IsListEmpty(&HandleTable->ListEntry)) {
        RemoveEntryList(&HandleTable->ListEntry);
        InitializeListHead(&HandleTable->ListEntry);
        }
    ExReleaseResource(&HandleTableListLock);
    KeLeaveCriticalRegion();
    return;
}

VOID
ExDestroyHandleTable(
    IN PHANDLE_TABLE HandleTable,
    IN EX_DESTROY_HANDLE_ROUTINE DestroyHandleProcedure OPTIONAL
    )

/*++

Routine Description:

    This function destroys the specified handle table.

Arguments:

    HandleTable - Supplies a pointer to a handle table

    DestroyHandleProcedure - Supplies a pointer to a function to call for
        each valid handle entry in the handle table.

Return Value:

    None.

--*/

{

    ULONG CountEntries;
    PHANDLE_ENTRY HandleEntry;
    PEPROCESS Process;
    PHANDLE_ENTRY TableBound;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // Remove the handle table from the handle table list.
    //

    ExRemoveHandleTable(HandleTable);

    //
    // If a handle entry table has been allocated, then scan all of
    // handle entries, call the destroy handle function, if specfied,
    // free the allocated pool, and return pool quota as appropriate.
    //

    Process = HandleTable->QuotaProcess;
    TableBound = HandleTable->TableBound;
    TableEntries = HandleTable->TableEntries;
    if (TableEntries != NULL) {
        if (ARGUMENT_PRESENT(DestroyHandleProcedure)) {
            HandleEntry = &TableEntries[1];
            while (HandleEntry < TableBound) {
                if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {
                    TableIndex = HandleEntry - TableEntries;
                    (*DestroyHandleProcedure)(INDEX_TO_HANDLE(TableIndex),
                                              HandleEntry);
                }

                HandleEntry += 1;
            }
        }

        ExFreePool(TableEntries);
        if (Process != NULL) {
            CountEntries = TableBound - TableEntries;
            PsReturnPoolQuota(Process,
                              PagedPool,
                              CountEntries * sizeof(HANDLE_ENTRY));
        }
    }

    //
    // Free the allocated pool and return pool quota as appropriate.
    //

    ExFreePool(HandleTable);
    if (Process != NULL) {
        PsReturnPoolQuota(Process,
                          NonPagedPool,
                          sizeof(HANDLE_TABLE));

    }

    return;
}

PHANDLE_TABLE
ExDupHandleTable(
    IN PEPROCESS Process OPTIONAL,
    IN PHANDLE_TABLE OldHandleTable,
    IN EX_DUPLICATE_HANDLE_ROUTINE DupHandleProcedure OPTIONAL
    )

/*++

Routine Description:

    This function creates a duplicate copy of the specified handle table.

Arguments:

    Process - Supplies an optional to the process to charge quota to.

    OldHandleTable - Supplies a pointer to a handle table.

    DupHandleProcedure - Supplies an optional pointer to a function to call
        for each valid handle in the duplicated handle table.

Return Value:

    If the specified handle table is successfully duplicated, then the
    address of the new handle table is returned as the function value.
    Otherwize, a value NULL is returned.

--*/

{

    PLIST_ENTRY FreeHead;
    PHANDLE_TABLE NewHandleTable;
    PHANDLE_ENTRY NewHandleEntry;
    PHANDLE_ENTRY NewTableEntries;
    PHANDLE_ENTRY OldHandleEntry;
    ULONG OldCountEntries;
    PHANDLE_ENTRY OldTableBound;
    PHANDLE_ENTRY OldTableEntries;

    PAGED_CODE();

    ASSERT(OldHandleTable != NULL);

    //
    // Lock the old handle table exclusive and allocate and initialize
    // a handle table descriptor.
    //

    ExLockHandleTableExclusive(OldHandleTable);
    NewHandleTable = ExpAllocateHandleTable(Process,
                                            OldHandleTable->CountToGrowBy);

    //
    // If the new handle table descriptor was successfully allocated, then
    // the allocate the handle entry table.
    //

    if (NewHandleTable != NULL) {
        OldTableBound = OldHandleTable->TableBound;
        OldTableEntries = OldHandleTable->TableEntries;
        OldCountEntries = OldTableBound - OldTableEntries;
        if (ExpAllocateHandleTableEntries(NewHandleTable,
                                          OldTableEntries,
                                          0,
                                          OldCountEntries) == NULL) {

            ExDestroyHandleTable(NewHandleTable, NULL);
            NewHandleTable = NULL;

        } else {

            //
            // Scan through the old handle table and either duplicate the
            // associated entry or insert it in the free list.
            //

            NewTableEntries = NewHandleTable->TableEntries;
            FreeHead = &NewTableEntries->ListEntry;
            OldHandleEntry = &OldTableEntries[1];
            NewHandleEntry = &NewTableEntries[1];
            while (OldHandleEntry < OldTableBound) {
                if (ExIsEntryFree(OldTableEntries, OldTableBound, OldHandleEntry)) {
                    InsertTailList(FreeHead, &NewHandleEntry->ListEntry);

                } else {
                    NewHandleEntry->Object = OldHandleEntry->Object;
                    NewHandleEntry->Attributes = OldHandleEntry->Attributes;
                    if (ARGUMENT_PRESENT(DupHandleProcedure)) {
                        if ((*DupHandleProcedure)(Process, NewHandleEntry)) {
                            NewHandleTable->HandleCount += 1;

                        } else {
                            InsertTailList(FreeHead, &NewHandleEntry->ListEntry);
                        }

                    } else {
                        NewHandleTable->HandleCount += 1;
                    }
                }

                NewHandleEntry += 1;
                OldHandleEntry += 1;
            }
        }
    }

    ExUnlockHandleTableExclusive(OldHandleTable);
    return NewHandleTable;
}

BOOLEAN
ExEnumHandleTable(
    IN PHANDLE_TABLE HandleTable,
    IN EX_ENUMERATE_HANDLE_ROUTINE EnumHandleProcedure,
    IN PVOID EnumParameter,
    OUT PHANDLE Handle OPTIONAL
    )

/*++

Routine Description:

    This function enumerates all the valid handles in a handle table.
    For each valid handle in the handle table, the specified eumeration
    function is called. If the enumeration function returns TRUE, then
    the enumeration is stopped, the current handle is returned to the
    caller via the optional Handle parameter, and this function returns
    TRUE to indicated that the enumeration stopped at a specific handle.

Arguments:

    HandleTable - Supplies a pointer to a handle table.

    EnumHandleProcedure - Supplies a pointer to a fucntion to call for
        each valid handle in the enumerated handle table.

    EnumParameter - Supplies an uninterpreted 32-bit value that is passed
        to the EnumHandleProcedure each time it is called.

    Handle - Supplies an optional pointer a variable that receives the
        Handle value that the enumeration stopped at. Contents of the
        variable only valid if this function returns TRUE.

Return Value:

    If the enumeration stopped at a specific handle, then a value of TRUE
    is returned. Otherwise, a value of FALSE is returned.

--*/

{

    PHANDLE_ENTRY HandleEntry;
    BOOLEAN ResultValue;
    PHANDLE_ENTRY TableEntries;
    PHANDLE_ENTRY TableBound;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // Lock the handle table exclusive and enumerate the handle entries.
    //

    ResultValue = FALSE;
    ExLockHandleTableShared(HandleTable);
    TableBound = HandleTable->TableBound;
    TableEntries = HandleTable->TableEntries;
    HandleEntry = &TableEntries[1];
    while (HandleEntry < TableBound) {
        if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {
            TableIndex = HandleEntry - TableEntries;
            if ((*EnumHandleProcedure)(HandleEntry,
                                        INDEX_TO_HANDLE(TableIndex),
                                        EnumParameter)) {

                if (ARGUMENT_PRESENT(Handle)) {
                    *Handle = INDEX_TO_HANDLE(TableIndex);
                }

                ResultValue = TRUE;
                break;
            }
        }

        HandleEntry += 1;
    }

    ExUnlockHandleTableShared(HandleTable);
    return ResultValue;
}

PHANDLE_ENTRY
ExMapHandleToPointer(
    IN PHANDLE_TABLE HandleTable,
    IN HANDLE Handle,
    IN BOOLEAN Shared
    )

/*++

Routine Description:

    This function maps a handle to a pointer to a handle entry. If the
    map operation is successful, then this function returns with the
    handle table locked.

Arguments:

    HandleTable - Supplies a pointer to a handle table.

    Handle - Supplies the handle to be mapped to a handle entry.

    Shared - Supplies a boolean value that determines whether the handle
        table is locked for shared (TRUE) or exclusive (FALSE) access.

Return Value:

    If the handle was successfully mapped to a pointer to a handle entry,
    then the address of the handle entry is returned as the function value
    with the handle table locked. Otherwise, a value of NULL is returned with
    the handle table unlocked.

--*/

{

    PHANDLE_ENTRY HandleEntry;
    PHANDLE_ENTRY TableBound;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    ASSERT(HandleTable != NULL);

    //
    // Lock the handle table exclusive or shared and check if the handle
    // if valid.
    //

    TableIndex = HANDLE_TO_INDEX(Handle);
    if (Shared != FALSE) {
        ExLockHandleTableShared(HandleTable);

    } else {
        ExLockHandleTableExclusive(HandleTable);
    }

    TableBound = HandleTable->TableBound;
    TableEntries = HandleTable->TableEntries;
    if (TableIndex < (ULONG)(TableBound - TableEntries)) {
        HandleEntry = &TableEntries[TableIndex];
        if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {
            return HandleEntry;
        }
    }

    if (Shared != FALSE) {
        ExUnlockHandleTableShared(HandleTable);

    } else {
        ExUnlockHandleTableExclusive(HandleTable);
    }

    return NULL;
}

NTSTATUS
ExSnapShotHandleTables(
    IN PEX_SNAPSHOT_HANDLE_ENTRY SnapShotHandleEntry,
    IN OUT PSYSTEM_HANDLE_INFORMATION HandleInformation,
    IN ULONG Length,
    IN OUT PULONG RequiredLength
    )

/*++

Routine Description:

    This function sets the handle allocation algorithm for the specified
    handle table.

Arguments:

    ...

Return Value:

    None.

--*/

{

    PHANDLE_ENTRY HandleEntry;
    PSYSTEM_HANDLE_TABLE_ENTRY_INFO HandleEntryInfo;
    PHANDLE_TABLE HandleTable;
    PLIST_ENTRY NextEntry;
    NTSTATUS Status;
    PHANDLE_ENTRY TableBound;
    PHANDLE_ENTRY TableEntries;
    ULONG TableIndex;

    PAGED_CODE();

    //
    // Lock the handle table list exclusive and traverse the list of
    // handle tables.
    //

    KeEnterCriticalRegion();
    ExAcquireResourceExclusive(&HandleTableListLock, TRUE);
    try {
        HandleEntryInfo = &HandleInformation->Handles[0];
        NextEntry = HandleTableListHead.Flink;
        while (NextEntry != &HandleTableListHead) {

            //
            // Get the address of the next handle table, lock the handle
            // table exclusive, and scan the list of handle entries.
            //

            HandleTable = CONTAINING_RECORD(NextEntry, HANDLE_TABLE, ListEntry);
            ExLockHandleTableExclusive(HandleTable);
            TableBound = HandleTable->TableBound;
            TableEntries = HandleTable->TableEntries;
            HandleEntry = &TableEntries[1];
            try {
                for (HandleEntry = &TableEntries[1];
                     HandleEntry < TableBound;
                     HandleEntry++) {
                    if (ExIsEntryUsed(TableEntries, TableBound, HandleEntry)) {
                        HandleInformation->NumberOfHandles += 1;
                        TableIndex = HandleEntry - TableEntries;
                        Status = (*SnapShotHandleEntry)(&HandleEntryInfo,
                                                        HandleTable->UniqueProcessId,
                                                        HandleEntry,
                                                        INDEX_TO_HANDLE(TableIndex),
                                                        Length,
                                                        RequiredLength);
                    }
                }

            } finally {
                ExUnlockHandleTableExclusive(HandleTable);
            }

            NextEntry = NextEntry->Flink;
        }

    } finally {
        ExReleaseResource(&HandleTableListLock);
        KeLeaveCriticalRegion();
    }

    return Status;
}

PHANDLE_TABLE
ExpAllocateHandleTable(
    IN PEPROCESS Process OPTIONAL,
    IN ULONG CountToGrowBy
    )

/*++

Routine Description:

    This function allocates and initializes a new handle table descriptor.

Arguments:

    Process - Supplies an optional pointer to a process to charge quota
        against.

    CountToGrowBy - Supplies the number of handle entries to grow the
        handle table by.

Return Value:

    If a handle is successfully allocated, then the address of the handle
    table is returned as the function value. Otherwise, NULL is returned.

--*/

{

    PHANDLE_TABLE HandleTable;

    PAGED_CODE();

    //
    // Allocate handle table from nonpaged pool.
    //

    HandleTable =
        (PHANDLE_TABLE)ExAllocatePoolWithTag(NonPagedPool,
                                             sizeof(HANDLE_TABLE),
                                             'btbO');

    //
    // If the allocation is successful, then attempt to charge quota as
    // appropriate and initialize the handle tabel descriptor.
    //

    if (HandleTable != NULL) {
        if (ARGUMENT_PRESENT(Process)) {
            try {
                PsChargePoolQuota(Process,
                                  NonPagedPool,
                                  sizeof(HANDLE_TABLE));

            } except (EXCEPTION_EXECUTE_HANDLER) {
                ExFreePool(HandleTable);
                return NULL;
            }
        }

        //
        // Initialize the handle table access synchronization information.
        //

        HandleTable->State.u.OwnerCount = 0;
        HandleTable->State.u.NumberOfSharedWaiters = 0;
        HandleTable->State.u.NumberOfExclusiveWaiters = 0;
        KeInitializeSpinLock(&HandleTable->SpinLock);
        KeInitializeSemaphore(&HandleTable->SharedWaiters, 0, MAXLONG);
        KeInitializeEvent(&HandleTable->ExclusiveWaiters,
                          SynchronizationEvent,
                          FALSE);

        //
        // Initialize the handle table descriptor.
        //

        HandleTable->LifoOrder = FALSE;
        HandleTable->UniqueProcessId = PsGetCurrentProcess()->UniqueProcessId;
        HandleTable->TableEntries = NULL;
        HandleTable->TableBound = NULL;
        HandleTable->QuotaProcess = Process;
        HandleTable->HandleCount = 0;
        HandleTable->CountToGrowBy = (USHORT)CountToGrowBy;

        //
        // Insert the handle table in the handle table list.
        //

        KeEnterCriticalRegion();
        ExAcquireResourceExclusive(&HandleTableListLock, TRUE);
        InsertTailList(&HandleTableListHead, &HandleTable->ListEntry);
        ExReleaseResource(&HandleTableListLock);
        KeLeaveCriticalRegion();
    }

    return HandleTable;
}

PHANDLE_ENTRY
ExpAllocateHandleTableEntries(
    IN PHANDLE_TABLE HandleTable,
    IN PHANDLE_ENTRY OldTableEntries,
    IN ULONG OldCountEntries,
    IN ULONG NewCountEntries
    )

/*++

Routine Description:

    This function allocates and initializes a new set of free handle
    table entries.

Arguments:

    HandleTable - Supplies a pointer to a handle table descriptor.

    OldTableEntries - Supplies a pointer to the old set of handle table
        entries.

    OldCountEntries - Supplies the previous count of table entries.

    NewCountEntries - Supplies the desired count of table entries.

Return Value:

    If a new set of handle entries is successfully allocated, then the
    address of the handle entries is returned as the function value.
    Otherwise, NULL is returned.

--*/

{

    PHANDLE_ENTRY FreeEntry;
    PLIST_ENTRY FreeHead;
    ULONG NewCountBytes;
    PHANDLE_ENTRY NewTableBound;
    PHANDLE_ENTRY NewTableEntries;
    LONG OldCountBytes;
    PEPROCESS Process;
    BOOLEAN Status;

    PAGED_CODE();

    ASSERT(NewCountEntries > OldCountEntries);

    //
    // Compute the old and new sizes for the handle entry table and
    // allocate a new handle entry table.
    //

    OldCountBytes = OldCountEntries * sizeof(HANDLE_ENTRY);
    NewCountBytes = NewCountEntries * sizeof(HANDLE_ENTRY);
    NewTableEntries = (PHANDLE_ENTRY)ExAllocatePoolWithTag(PagedPool,
                                                           NewCountBytes,
                                                           'btbO');

    //
    // If the allocation is successful, then attempt to charge quota as
    // appropriate and initialize the free list of handle entries.
    //

    if (NewTableEntries != NULL) {
        Process = HandleTable->QuotaProcess;
        if (Process != NULL) {
            try {
                PsChargePoolQuota(Process,
                                  PagedPool,
                                  NewCountBytes - OldCountBytes);

            } except (EXCEPTION_EXECUTE_HANDLER) {
                ExFreePool(NewTableEntries);
                return NULL;
            }
        }

        //
        // Initialize the free listhead.
        //

        FreeHead = &NewTableEntries->ListEntry;
        InitializeListHead(FreeHead);

        //
        // If a new handle table is being created or an existing handle
        // table is being extended, then initialize the free entry list
        // allocated in the extension.
        //

        NewTableBound = &NewTableEntries[NewCountEntries];
        if ((OldTableEntries == NULL) || (OldCountEntries != 0)) {
            if (OldCountEntries == 0) {
                FreeEntry = &NewTableEntries[1];

            } else {
                FreeEntry = &NewTableEntries[OldCountEntries];
            }

            do {
                InsertTailList(FreeHead, &FreeEntry->ListEntry);
                FreeEntry += 1;
            } while (FreeEntry < NewTableBound);

            //
            // If there is an old handle entry table, then move the old
            // handle entires to the new handle entry table and free the
            // old handle entry table.
            //

            if (OldTableEntries != NULL) {
                RtlMoveMemory(&NewTableEntries[1],
                              &OldTableEntries[1],
                              OldCountBytes - sizeof(HANDLE_ENTRY));

                ExFreePool(OldTableEntries);
            }
        }

        //
        // Set the new count of table entries, the new table bound, and
        // the address of the new table entries.
        //

        HandleTable->TableBound = NewTableBound;
        HandleTable->TableEntries = NewTableEntries;
    }

    return NewTableEntries;
}