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
|
/*++
Copyright (c) 1999 - 2002 Microsoft Corporation
Module Name:
ncdirenum.c
Abstract:
Contains routines to process user-initiated directory enumerations.
Depending on path, we may need to suppress the real mapping from
being visible to the user, or "inject" the user mapping for the
user. We must take care to do so having regard for the pattern
matching and case sensitivity dictated by the caller.
Environment:
Kernel mode
--*/
#include "nc.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, NcCopyDirEnumEntry)
#pragma alloc_text(PAGE, NcDirEnumSelectNextEntry)
#pragma alloc_text(PAGE, NcEnumerateDirectory)
#pragma alloc_text(PAGE, NcEnumerateDirectorySetupInjection)
#pragma alloc_text(PAGE, NcEnumerateDirectoryReset)
#pragma alloc_text(PAGE, NcPopulateCacheEntry)
#pragma alloc_text(PAGE, NcSkipName)
#pragma alloc_text(PAGE, NcStreamHandleContextEnumClose)
#pragma alloc_text(PAGE, NcStreamHandleContextEnumSetup)
#pragma alloc_text(PAGE, NcStreamHandleContextDirEnumCreate)
#endif
FLT_PREOP_CALLBACK_STATUS
NcEnumerateDirectory (
_Inout_ PFLT_CALLBACK_DATA Data,
_In_ PCFLT_RELATED_OBJECTS FltObjects,
_Flt_CompletionContext_Outptr_ PVOID *CompletionContext
)
/*++
Routine Description:
Routine is invoked when a directory enumeration is issued by the
user.
Arguments:
Data - Pointer to the filter CallbackData that is passed to us.
FltObjects - Pointer to the FLT_RELATED_OBJECTS data structure containing
opaque handles to this filter, instance, its associated volume and
file object.
CompletionContext - The context for the completion routine for this
operation.
Return Value:
The return value is the Status of the operation.
--*/
{
//TODO WE SHOULD CONSIDER MOVING THIS TO POST BECAUSE NTFS WILL TAKE CARE
// OF SYNC.
FLT_PREOP_CALLBACK_STATUS ReturnValue;
NTSTATUS Status;
PNC_INSTANCE_CONTEXT InstanceContext = NULL;
PNC_STREAM_HANDLE_CONTEXT HandleContext = NULL;
PNC_DIR_QRY_CONTEXT DirCtx = NULL;
PFLT_FILE_NAME_INFORMATION FileNameInformation = NULL;
NC_PATH_OVERLAP RealOverlap;
NC_PATH_OVERLAP UserOverlap;
BOOLEAN Reset = BooleanFlagOn( Data->Iopb->OperationFlags, SL_RESTART_SCAN );
BOOLEAN FirstQuery;
BOOLEAN Single = BooleanFlagOn( Data->Iopb->OperationFlags, SL_RETURN_SINGLE_ENTRY );
BOOLEAN IgnoreCase = !BooleanFlagOn( FltObjects->FileObject->Flags,
FO_OPENED_CASE_SENSITIVE );
FILE_INFORMATION_CLASS InformationClass =
Data->Iopb->Parameters.DirectoryControl.QueryDirectory.FileInformationClass;
PVOID UserBuffer;
ULONG BufferSize; //size for user and system buffers.
BOOLEAN Unlock = FALSE;
//Vars for moving data into user buffer.
ULONG NumEntriesCopied;
ULONG UserBufferOffset;
ULONG LastEntryStart;
BOOLEAN MoreRoom;
PNC_CACHE_ENTRY NextEntry;
DIRECTORY_CONTROL_OFFSETS Offsets;
BOOLEAN FoundStructureOffsets;
UNREFERENCED_PARAMETER( CompletionContext );
PAGED_CODE();
FLT_ASSERT( IoGetTopLevelIrp() == NULL );
FoundStructureOffsets = NcDetermineStructureOffsets( &Offsets,
InformationClass );
if (!FoundStructureOffsets) {
Status = STATUS_INVALID_PARAMETER;
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
//
// Get our instance context.
//
Status = FltGetInstanceContext( FltObjects->Instance,
&InstanceContext );
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
//
// Get the directory's name.
//
Status = NcGetFileNameInformation( Data,
NULL,
NULL,
FLT_FILE_NAME_OPENED | FLT_FILE_NAME_QUERY_DEFAULT,
&FileNameInformation );
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
Status = FltParseFileNameInformation( FileNameInformation );
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
//
// See if the directory is parent of either mapping.
//
NcComparePath( &FileNameInformation->Name,
&InstanceContext->Mapping.UserMapping,
NULL,
IgnoreCase,
TRUE,
&UserOverlap );
NcComparePath( &FileNameInformation->Name,
&InstanceContext->Mapping.RealMapping,
NULL,
IgnoreCase,
TRUE,
&RealOverlap );
if (!(UserOverlap.Parent || RealOverlap.Parent )) {
//
// We are not interested in this directory
// because it is not the parent of either
// mapping. This means we can just passthrough.
//
Status = STATUS_SUCCESS;
ReturnValue = FLT_PREOP_SUCCESS_NO_CALLBACK;
goto NcEnumerateDirectoryCleanup;
}
Status = NcStreamHandleContextAllocAndAttach( FltObjects->Filter,
FltObjects->Instance,
FltObjects->FileObject,
&HandleContext );
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
FLT_ASSERT( HandleContext != NULL );
DirCtx = &HandleContext->DirectoryQueryContext;
_Analysis_assume_( DirCtx != NULL );
//
// Before looking at the context, we have to acquire the lock.
//
NcLockStreamHandleContext( HandleContext );
Unlock = TRUE;
//
// We don't allow multiple outstanding enumeration requests on
// a single handle.
//
// TODO: This needs to change.
//
if (DirCtx->EnumerationOutstanding) {
Status = STATUS_UNSUCCESSFUL;
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
DirCtx->EnumerationOutstanding = TRUE;
//
// Now drop the lock. We're protected by the EnumerationOutstanding
// flag; nobody else can muck with the enumeration context structure.
//
NcUnlockStreamHandleContext( HandleContext );
Unlock = FALSE;
//
// Now we need to initialize or clear the cache and query options.
//
Status = NcStreamHandleContextEnumSetup( DirCtx,
InstanceContext,
&Offsets,
Data,
FltObjects,
UserOverlap,
&FirstQuery );
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
//
// Prepare to populate the user buffer.
//
UserBuffer = Data->Iopb->Parameters.DirectoryControl.QueryDirectory.DirectoryBuffer;
BufferSize = Data->Iopb->Parameters.DirectoryControl.QueryDirectory.Length;
//
// Lets copy data into the user buffer.
//
NumEntriesCopied = 0;
UserBufferOffset = 0;
do {
//
// If there is no cache entry, populate it.
//
if (DirCtx->Cache.Buffer == NULL) {
Status = NcPopulateCacheEntry( FltObjects->Instance,
FltObjects->FileObject,
Data->Iopb->Parameters.DirectoryControl.QueryDirectory.Length,
Data->Iopb->Parameters.DirectoryControl.QueryDirectory.FileInformationClass,
Data->Iopb->Parameters.DirectoryControl.QueryDirectory.FileName,
Reset,
&DirCtx->Cache);
//
// We only want to reset the cache once.
//
Reset = FALSE;
//
// There was a problem populating cache, pass up to user.
//
if (!NT_SUCCESS( Status )) {
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
}
NextEntry = NcDirEnumSelectNextEntry( DirCtx, &Offsets, IgnoreCase );
if (NextEntry == NULL) {
//
// There are no more entries.
//
break;
}
if (NcSkipName( &Offsets,
DirCtx,
RealOverlap,
&InstanceContext->Mapping,
IgnoreCase )) {
//
// This entry is the real mapping path. That means we have to mask it...
// We will say there is more room and continue.
//
MoreRoom = TRUE;
} else {
//
// We are keeping this entry!
//
try {
LastEntryStart = UserBufferOffset;
UserBufferOffset = NcCopyDirEnumEntry( UserBuffer,
UserBufferOffset,
BufferSize,
NextEntry,
&Offsets,
&MoreRoom );
} except (NcExceptionFilter( GetExceptionInformation(), TRUE )) {
Status = STATUS_INVALID_USER_BUFFER;
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
if (MoreRoom) {
NumEntriesCopied++;
}
}// end of "we are copying entry"
} while (MoreRoom &&
(Single ? (NumEntriesCopied < 1) : TRUE));
if (NumEntriesCopied > 0) {
//
// Now we know what the last entry in the user buffer is going to be.
// Set its NextEntryOffset to 0, so that the user knows its the last element.
//
try {
NcSetNextEntryOffset( Add2Ptr(UserBuffer, LastEntryStart),
&Offsets,
TRUE );
} except (NcExceptionFilter( GetExceptionInformation(), TRUE )) {
Status = STATUS_INVALID_USER_BUFFER;
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
}
}
//
// We finished copying data.
//
ReturnValue = FLT_PREOP_COMPLETE;
if (NumEntriesCopied == 0) {
if (FirstQuery) {
Status = STATUS_NO_SUCH_FILE;
} else {
Status = STATUS_NO_MORE_FILES;
}
} else {
Status = STATUS_SUCCESS;
}
ReturnValue = FLT_PREOP_COMPLETE;
goto NcEnumerateDirectoryCleanup;
NcEnumerateDirectoryCleanup:
if (ReturnValue == FLT_PREOP_COMPLETE) {
//
// We need to write back results of query.
//
Data->IoStatus.Status = Status;
if (NT_SUCCESS( Status )) {
//success
Data->IoStatus.Information = UserBufferOffset;
} else {
//failure
Data->IoStatus.Information = 0;
}
}
if (InstanceContext != NULL) {
FltReleaseContext( InstanceContext );
}
if (DirCtx != NULL) {
if (!Unlock) {
NcLockStreamHandleContext( HandleContext );
Unlock = TRUE;
}
FLT_ASSERT( DirCtx->EnumerationOutstanding );
DirCtx->EnumerationOutstanding = FALSE;
NcUnlockStreamHandleContext( HandleContext );
Unlock = FALSE;
FltReleaseContext( HandleContext );
}
FLT_ASSERT( !Unlock );
if (FileNameInformation != NULL) {
FltReleaseFileNameInformation( FileNameInformation );
}
return ReturnValue;
}
NTSTATUS
NcEnumerateDirectorySetupInjection (
_Inout_ PNC_DIR_QRY_CONTEXT DirQryCtx,
_In_ PCFLT_RELATED_OBJECTS FltObjects,
_In_ PNC_INSTANCE_CONTEXT InstanceContext,
_In_ PDIRECTORY_CONTROL_OFFSETS Offsets,
_In_ FILE_INFORMATION_CLASS InformationClass
)
/*++
Routine Description:
Sets up directory enumeration context cache so that we are ready to
perform injection.
Arguments:
DirQryCtx - Pointer to directory query context (on the stream handle.)
FltObjects - FltObjects structure for this operation.
InstanceContext - Instance Context for this operation.
Offsets - Offsets structure for this information class.
InformationClass - The information class for this operation.
Return Value:
Returns STATUS_SUCCESS on success, otherwise an appropriate error code.
--*/
{
NTSTATUS Status;
OBJECT_ATTRIBUTES RealParentAttributes;
HANDLE RealParentHandle = 0; //close always
PFILE_OBJECT RealParentFileObj = NULL;
IO_STATUS_BLOCK RealParentStatusBlock;
char * QueryBuffer = NULL; //free on error, when no injection
ULONG QueryBufferLength = 0;
USHORT NameLength;
ULONG QueryBufferLengthRead;
BOOLEAN IgnoreCase = !BooleanFlagOn( FltObjects->FileObject->Flags,
FO_OPENED_CASE_SENSITIVE );
PAGED_CODE();
//
// If the user has specified a search string, and if our user mapping
// should not be returned in this search string, return success. We
// don't need to inject anything.
//
if (DirQryCtx->SearchString.Length > 0 &&
!FsRtlIsNameInExpression( &DirQryCtx->SearchString,
&InstanceContext->Mapping.UserMapping.LongNamePath.FinalComponentName,
IgnoreCase,
NULL ) &&
!FsRtlIsNameInExpression( &DirQryCtx->SearchString,
&InstanceContext->Mapping.UserMapping.ShortNamePath.FinalComponentName,
IgnoreCase,
NULL )) {
Status = STATUS_SUCCESS;
goto NcEnumerateDirectorySetupCleanup;
}
//
// Initialize insertion info.
//
// We have to insert the final component of the real mapping
// as the final component of the user mapping. To do this we
// will open the parent of the real mapping, and query the real
// mapping.
// Then we will overwrite the real mapping's name with
// the final component of the user mapping. This data will be
// stored in the DirQryCtx for later injection.
//
//
// Open parent of real mapping.
//
InitializeObjectAttributes( &RealParentAttributes,
&InstanceContext->Mapping.RealMapping.LongNamePath.ParentPath,
OBJ_KERNEL_HANDLE,
NULL,
NULL);
Status = NcCreateFileHelper( NcGlobalData.FilterHandle, // Filter
FltObjects->Instance, // InstanceOffsets
&RealParentHandle, // Returned Handle
&RealParentFileObj, // Returned FileObject
FILE_LIST_DIRECTORY|FILE_TRAVERSE, // Desired Access
&RealParentAttributes, // object attributes
&RealParentStatusBlock, // Returned IOStatusBlock
0, // Allocation Size
FILE_ATTRIBUTE_NORMAL, // File Attributes
0, // Share Access
FILE_OPEN, // Create Disposition
FILE_DIRECTORY_FILE, // Create Options
NULL, // Ea Buffer
0, // EA Length
IO_IGNORE_SHARE_ACCESS_CHECK, // Flags
FltObjects->FileObject ); // Transaction state
if (!NT_SUCCESS( Status )) {
goto NcEnumerateDirectorySetupCleanup;
}
//
// Allocate Buffer to store mapping data.
//
NameLength = Max( InstanceContext->Mapping.RealMapping.LongNamePath.FinalComponentName.Length,
InstanceContext->Mapping.UserMapping.LongNamePath.FinalComponentName.Length );
QueryBufferLength = Offsets->FileNameDist + NameLength;
QueryBuffer = ExAllocatePoolZero( PagedPool, QueryBufferLength, NC_DIR_QRY_CACHE_TAG );
if (QueryBuffer == NULL) {
Status = STATUS_INSUFFICIENT_RESOURCES;
goto NcEnumerateDirectorySetupCleanup;
}
//
// Query the information from the parent of the real mapping.
//
Status = NcQueryDirectoryFile( FltObjects->Instance,
RealParentFileObj,
QueryBuffer,
QueryBufferLength,
InformationClass,
TRUE,//Return single entry
&InstanceContext->Mapping.RealMapping.LongNamePath.FinalComponentName,
FALSE,//restart scan
&QueryBufferLengthRead);
if (Status == STATUS_NO_SUCH_FILE) {
//
// The user mapping does not exist, this is allowed. It means we
// have nothing to inject.
//
DirQryCtx->InjectionEntry.Buffer = NULL;
DirQryCtx->InjectionEntry.CurrentOffset = 0;
ExFreePoolWithTag( QueryBuffer, NC_DIR_QRY_CACHE_TAG );
QueryBuffer = NULL;
Status = STATUS_SUCCESS;
} else if (!NT_SUCCESS( Status )) {
//
// An unexpected error occurred, return code.
//
goto NcEnumerateDirectorySetupCleanup;
} else {
//
// Now we have to munge the real mapping directory entry into a
// user mapping directory entry.
//
NcSetFileName( QueryBuffer,
InstanceContext->Mapping.UserMapping.LongNamePath.FinalComponentName.Buffer,
InstanceContext->Mapping.UserMapping.LongNamePath.FinalComponentName.Length,
Offsets,
TRUE );
NcSetShortName( QueryBuffer,
InstanceContext->Mapping.UserMapping.ShortNamePath.FinalComponentName.Buffer,
InstanceContext->Mapping.UserMapping.ShortNamePath.FinalComponentName.Length,
Offsets );
FLT_ASSERT( DirQryCtx->InjectionEntry.Buffer == NULL );
//
// Set the injection entry up in the cache.
//
DirQryCtx->InjectionEntry.Buffer = QueryBuffer;
DirQryCtx->InjectionEntry.CurrentOffset = 0;
}
NcEnumerateDirectorySetupCleanup:
if (!NT_SUCCESS( Status )) {
if(QueryBuffer != NULL) {
ExFreePoolWithTag( QueryBuffer, NC_DIR_QRY_CACHE_TAG );
}
}
if (RealParentHandle != NULL) {
FltClose( RealParentHandle );
}
if (RealParentFileObj != NULL) {
ObDereferenceObject( RealParentFileObj );
}
return Status;
}
VOID
NcEnumerateDirectoryReset (
_Inout_ PNC_DIR_QRY_CONTEXT DirCtx
)
/*++
Routine Description:
Tears down any stream handle context related to enumeration and prepares
the stream handle context for reuse.
Arguments:
DirQryCtx - Pointer to directory query context (on the stream handle.)
Return Value:
None.
--*/
{
PAGED_CODE();
ExFreePoolWithTag( DirCtx->Cache.Buffer, NC_DIR_QRY_CACHE_TAG );
DirCtx->Cache.Buffer = NULL;
DirCtx->Cache.CurrentOffset = 0;
ExFreePoolWithTag( DirCtx->InjectionEntry.Buffer, NC_DIR_QRY_CACHE_TAG );
DirCtx->InjectionEntry.Buffer = NULL;
DirCtx->InjectionEntry.CurrentOffset = 0;
}
BOOLEAN
NcSkipName (
_In_ PDIRECTORY_CONTROL_OFFSETS Offsets,
_In_ PNC_DIR_QRY_CONTEXT Context,
_In_ NC_PATH_OVERLAP RealOverlap,
_In_ PNC_MAPPING Mapping,
_In_ BOOLEAN IgnoreCase
)
/*++
Routine Description:
Determines if the next entry is for the real mapping. If it is, we want
to "skip" returning this entry and proceed to the next.
Arguments:
Offsets - Offset information for this enumeration class.
Context - Pointer to directory query context (on the stream handle.)
This is used to obtain the entry we are contemplating returning.
RealOverlap - Relationship of the object that enumeration is being
requested on to the real mapping. This routine will only skip
entries if we are enumerating the parent of the real mapping.
Return Value:
TRUE if this entry should be skipped/suppressed; FALSE if it should be
returned to the user.
--*/
{
BOOLEAN Result = FALSE;
PVOID CacheEntry;
UNICODE_STRING CacheString;
PUNICODE_STRING IgnoreString = &Mapping->RealMapping.LongNamePath.FinalComponentName;
ULONG ElementSize;
BOOLEAN LastElement;
PAGED_CODE();
if (RealOverlap.Parent) {
//
// We have to check for a match.
//
CacheEntry = Add2Ptr( Context->Cache.Buffer, Context->Cache.CurrentOffset);
ElementSize = NcGetEntrySize( CacheEntry, Offsets );
LastElement = (BOOLEAN)(NcGetNextEntryOffset( CacheEntry, Offsets ) == 0);
CacheString.Buffer = NcGetFileName( CacheEntry, Offsets );
CacheString.Length = (USHORT) NcGetFileNameLength( CacheEntry, Offsets );
CacheString.MaximumLength = CacheString.Length;
if (RtlCompareUnicodeString( &CacheString,
IgnoreString,
IgnoreCase ) == 0) {
//
// We need to ignore this name.
//
Result = TRUE;
//
// skip
//
if (LastElement) {
//
// This was the last element in the entry, so we should clean the entry.
//
ExFreePoolWithTag(Context->Cache.Buffer, NC_DIR_QRY_CACHE_TAG);
Context->Cache.Buffer = NULL;
Context->Cache.CurrentOffset = 0;
} else {
//
// Entry has more elements, update offset counter.
//
Context->Cache.CurrentOffset += ElementSize;
}
}
}
return Result;
}
NTSTATUS
NcPopulateCacheEntry (
_In_ PFLT_INSTANCE Instance,
_In_ PFILE_OBJECT FileObject,
_In_ ULONG BufferLength,
_In_ FILE_INFORMATION_CLASS FileInfoClass,
_In_ PUNICODE_STRING SearchString,
_In_ BOOLEAN RestartScan,
_Out_ PNC_CACHE_ENTRY Cache
)
/*++
Routine Description:
Obtains the next entry from the filesystem. By always reading ahead, we
can determine when to return the injected entry (if one exists) while
attempting to preserve directory sort order.
Arguments:
Instance - Instance of this filter in the filter stack.
FileObject - Directory that we are enumerating.
BufferLength - Size, in bytes, of the buffer to allocate within this
routine.
FileInfoClass - Directory enumeration class that we are using.
SearchString - Pointer to the string containing the enumeration criteria.
Will be empty if enumerating all objects in a directory.
RestartScan - Boolean value set to TRUE if we should start enumeration from
the beginning. Set to FALSE to continue from the previous point.
Cache - Pointer to our structure for receiving the cached entry.
Return Value:
The return value is the Status of the operation.
--*/
{
NTSTATUS Status;
PVOID Buffer;
PAGED_CODE();
if (SearchString != NULL && SearchString->Buffer == NULL) {
//
// In the case there is no search string provided,
// don't pass one to the filesystem.
//
SearchString = NULL;
}
Buffer = ExAllocatePoolZero( PagedPool, BufferLength, NC_DIR_QRY_CACHE_TAG );
if (Buffer == NULL) {
Status = STATUS_INSUFFICIENT_RESOURCES;
return Status;
}
Status = NcQueryDirectoryFile( Instance,
FileObject,
Buffer,
BufferLength,
FileInfoClass,
FALSE,
SearchString,
RestartScan,
NULL);
if (Status == STATUS_NO_MORE_FILES || Status == STATUS_NO_SUCH_FILE) {
//
// There are no more files. Keep cache empty.
//
Cache->Buffer = NULL;
Cache->CurrentOffset = 0;
ExFreePoolWithTag( Buffer, NC_DIR_QRY_CACHE_TAG );
Status = STATUS_SUCCESS;
} else if (NT_SUCCESS( Status )) {
//
// There were entries, populate.
//
Cache->Buffer = Buffer;
Cache->CurrentOffset = 0;
} else {
//
// An unspecified error occurred, return it.
//
ExFreePoolWithTag( Buffer, NC_DIR_QRY_CACHE_TAG );
}
return Status;
}
PNC_CACHE_ENTRY
NcDirEnumSelectNextEntry(
_Inout_ PNC_DIR_QRY_CONTEXT Context,
_In_ PDIRECTORY_CONTROL_OFFSETS Offsets,
_In_ BOOLEAN IgnoreCase
)
/*++
Routine Description:
This routine determines whether the cached entry (returned from the
filesystem) should be returned now or whether the injected entry (as a
result of our mapping) should be returned now.
Arguments:
Context - The enumeration context of this handle.
Offsets - Information describing the offsets for this enumeration class.
IgnoreCase - TRUE if we are case insensitive, FALSE if case sensitive.
Return Value:
A pointer to the entry we should return, or NULL if there is nothing
remaining to return.
--*/
{
PNC_CACHE_ENTRY NextEntry;
UNICODE_STRING CacheString;
UNICODE_STRING InsertString;
PVOID CacheEntry;
PVOID InjectEntry;
PAGED_CODE();
//
// Figure out which name comes first
//
if ((Context->Cache.Buffer == NULL) &&
(Context->InjectionEntry.Buffer == NULL)) {
//
// There are no names left, return STATUS_NO_MORE_FILES
//
NextEntry = NULL;
} else if (Context->Cache.Buffer == NULL) {
//
// The cache is empty, so inject.
//
NextEntry = &Context->InjectionEntry;
} else if (Context->InjectionEntry.Buffer == NULL) {
//
// The injection entry is empty, drain the cache.
//
NextEntry = &Context->Cache;
} else {
//
// We have to seek in the entry buffer to the current entry within the buffer.
//
CacheEntry = Add2Ptr( Context->Cache.Buffer, Context->Cache.CurrentOffset );
InjectEntry = Add2Ptr( Context->InjectionEntry.Buffer, Context->InjectionEntry.CurrentOffset );
//
// Find names within the entries.
//
CacheString.Buffer = NcGetFileName( CacheEntry, Offsets );
CacheString.Length = (USHORT) NcGetFileNameLength( CacheEntry, Offsets );
CacheString.MaximumLength = CacheString.Length;
InsertString.Buffer = NcGetFileName( InjectEntry, Offsets );
InsertString.Length = (USHORT) NcGetFileNameLength( InjectEntry, Offsets );
InsertString.MaximumLength = InsertString.Length;
//
// Compare the names
//
if (RtlCompareUnicodeString( &CacheString,
&InsertString,
IgnoreCase ) < 0) {
//
// Cache string comes first
//
NextEntry = &Context->Cache;
} else {
//
// insert string comes first
//
NextEntry = &Context->InjectionEntry;
}
}
return NextEntry;
}
_Success_(*Copied)
ULONG
NcCopyDirEnumEntry (
_Out_ PVOID UserBuffer,
_In_ ULONG UserOffset,
_In_ ULONG UserSize,
_Inout_ PNC_CACHE_ENTRY Entry,
_In_ PDIRECTORY_CONTROL_OFFSETS Offsets,
_Out_ PBOOLEAN Copied
)
/*++
Routine Description:
This routine copies a single enumeration result into the caller's
buffer.
Arguments:
UserBuffer - Pointer to the caller's buffer.
UserOffset - Offset within the caller's buffer that we intend to write new
results.
UserSize - Size of the caller's buffer, in bytes.
Entry - Pointer to the directory entry that we intend to return.
Offsets - Information describing the offsets for this enumeration class.
Copied - Pointer to a boolean value indicating whether this routine copied
a new entry or not.
Return Value:
The new offset in the user buffer that any future copies should use.
--*/
{
PVOID Element = Add2Ptr( Entry->Buffer, Entry->CurrentOffset );
PVOID Dest = Add2Ptr( UserBuffer, UserOffset );
ULONG ElementSize = NcGetEntrySize( Element, Offsets );
BOOLEAN LastElement = (BOOLEAN)(NcGetNextEntryOffset( Element, Offsets ) == 0);
PAGED_CODE();
if (UserSize - UserOffset >= ElementSize) {
//
// There is enough room for this element, so copy it.
//
RtlCopyMemory( Dest, Element, ElementSize );
UserOffset += ElementSize;
*Copied = TRUE;
//
// Update Entry's Offset
//
if (LastElement) {
//
// This was the last element in the entry, so we should clean the
// entry.
//
ExFreePoolWithTag( Entry->Buffer, NC_TAG );
Entry->Buffer = NULL;
Entry->CurrentOffset = 0;
//
// The last element in cached entries have a NextEntryOffset of 0,
// make sure that we report the actual next entry offset.
//
NcSetNextEntryOffset( Dest, Offsets, FALSE );
} else {
//
// Entry has more elements, update offset counter.
//
Entry->CurrentOffset += ElementSize;
}
} else {
//
// User buffer does not have enough space.
//
*Copied = FALSE;
}
return UserOffset;
}
NTSTATUS
NcStreamHandleContextDirEnumCreate (
_Out_ PNC_DIR_QRY_CONTEXT Context
)
/*++
Routine Description:
Initializes the stream handle context ready for directory enumeration
requests.
Arguments:
Context - Pointer to the directory context.
Return Value:
The return value is the Status of the operation. Currently this operation
cannot fail, so this function always returns STATUS_SUCCESS.
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
PAGED_CODE();
Context->EnumerationOutstanding = FALSE;
Context->InUse = FALSE;
Context->Cache.Buffer = NULL;
Context->Cache.CurrentOffset = 0;
Context->InjectionEntry.Buffer = NULL;
Context->InjectionEntry.CurrentOffset = 0;
Context->SearchString.Length = 0;
Context->SearchString.MaximumLength = 0;
Context->SearchString.Buffer = NULL;
return Status;
}
NTSTATUS
NcStreamHandleContextEnumSetup (
_Inout_ PNC_DIR_QRY_CONTEXT DirContext,
_In_ PNC_INSTANCE_CONTEXT InstanceContext,
_In_ PDIRECTORY_CONTROL_OFFSETS Offsets,
_In_ PFLT_CALLBACK_DATA Data,
_In_ PCFLT_RELATED_OBJECTS FltObjects,
_In_ NC_PATH_OVERLAP UserMappingOverlap,
_Out_ PBOOLEAN FirstUsage
)
/*++
Routine Description:
Acquires the stream handle context and initializes it for a directory
enumeration.
Arguments:
DirContext - Pointer to the directory context.
InstanceContext - Pointer to this instance's context.
Offsets - Offsets structure for this enumeration class.
Data - Callback data for this operation.
FltObjects - FltObjects structure for this operation.
UserMappingOverlap - The overlap between the user mapping and this file
object.
FirstUsage - Weather or not this is the first usage of this handle in a
directory enumeration.
Return Value:
The return value is the Status of the operation.
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
PUNICODE_STRING SearchString = Data->Iopb->Parameters.DirectoryControl.QueryDirectory.FileName;
FILE_INFORMATION_CLASS InformationClass = Data->Iopb->Parameters.DirectoryControl.QueryDirectory.FileInformationClass;
BOOLEAN ResetSearch = BooleanFlagOn( Data->Iopb->OperationFlags, SL_RESTART_SCAN );
BOOLEAN IgnoreCase = !BooleanFlagOn( FltObjects->FileObject->Flags,
FO_OPENED_CASE_SENSITIVE );
PAGED_CODE();
//
// This context could be in its first use. If it is, then we need to
// setup the search string and information class.
//
if (DirContext->InUse == FALSE) {
//
// This was the first usage of the context.
// We should set up the search string.
//
if (SearchString != NULL) {
DirContext->SearchString.Buffer = ExAllocatePoolZero( PagedPool,
SearchString->Length,
NC_DIR_QRY_SEARCH_STRING );
if (DirContext->SearchString.Buffer == NULL) {
Status = STATUS_INSUFFICIENT_RESOURCES;
goto NcStreamHandleContextEnumSetupCleanup;
}
DirContext->SearchString.MaximumLength = SearchString->Length;
if (IgnoreCase) {
RtlUpcaseUnicodeString( &DirContext->SearchString, SearchString, FALSE );
} else {
RtlCopyUnicodeString( &DirContext->SearchString, SearchString );
}
DirContext->SearchString.Length = SearchString->Length;
} else {
RtlInitEmptyUnicodeString( &DirContext->SearchString,
NULL,
0 );
}
DirContext->InformationClass = InformationClass;
//
// We should write back to the caller so they know its the first usage.
//
*FirstUsage = TRUE;
} else {
//
// This is not the fist usage, so write back to user.
//
*FirstUsage = FALSE;
//
// This is not the first query. Lets make sure that our data
// is consistent. If the information classes don't line up
// then our cache might be inconsistant. We should fail this
// operation.
//
// TODO: Is this correct?
//
if (DirContext->InformationClass != InformationClass) {
Status = STATUS_INVALID_PARAMETER;
goto NcStreamHandleContextEnumSetupCleanup;
}
}
if (!DirContext->InUse || ResetSearch) {
//
// Either this is the first use of the context,
// or they are reseting the enumeration. We
// should clear the cache either way.
//
if (DirContext->Cache.Buffer != NULL) {
ExFreePoolWithTag( DirContext->Cache.Buffer, NC_TAG );
DirContext->Cache.Buffer = NULL;
DirContext->Cache.CurrentOffset = 0;
}
if (DirContext->InjectionEntry.Buffer != NULL) {
ExFreePoolWithTag( DirContext->InjectionEntry.Buffer, NC_TAG );
DirContext->InjectionEntry.Buffer = NULL;
DirContext->InjectionEntry.CurrentOffset = 0;
}
//
// Now that the cache is clear we can set up the injection entry.
// The injection entry is the user mapping itself. Thus it only needs
// to be injected if the directory being enumerated is the parent of
// the user mapping.
//
if (UserMappingOverlap.Parent) {
Status = NcEnumerateDirectorySetupInjection( DirContext,
FltObjects,
InstanceContext,
Offsets,
InformationClass );
if (!NT_SUCCESS( Status )) {
goto NcStreamHandleContextEnumSetupCleanup;
}
}
}
//
// Now we know that the entry is setup.
// Mark it as in use.
//
DirContext->InUse = TRUE;
Status = STATUS_SUCCESS;
NcStreamHandleContextEnumSetupCleanup:
if (!NT_SUCCESS( Status )) {
if (!DirContext->InUse) {
//
// We failed to set up the context for first use.
// We should free our buffer we allocated.
//
if (DirContext->SearchString.Buffer != NULL) {
ExFreePoolWithTag( DirContext->SearchString.Buffer, NC_TAG );
DirContext->SearchString.Buffer = NULL;
DirContext->SearchString.Length = 0;
DirContext->SearchString.MaximumLength = 0;
}
}
}
return Status;
}
VOID
NcStreamHandleContextEnumClose (
_In_ PNC_DIR_QRY_CONTEXT DirContext
)
/*++
Routine Description:
Tears down any remaining state associated with a directory enumeration.
Arguments:
DirContext - Pointer to the directory context.
Return Value:
None.
--*/
{
PAGED_CODE();
if (DirContext->Cache.Buffer != NULL) {
ExFreePoolWithTag( DirContext->Cache.Buffer,
NC_DIR_QRY_CACHE_TAG );
DirContext->Cache.Buffer = NULL;
}
if (DirContext->InjectionEntry.Buffer != NULL) {
ExFreePoolWithTag( DirContext->InjectionEntry.Buffer,
NC_DIR_QRY_CACHE_TAG );
DirContext->InjectionEntry.Buffer = NULL;
}
if (DirContext->SearchString.Buffer != NULL) {
ExFreePoolWithTag( DirContext->SearchString.Buffer,
NC_DIR_QRY_SEARCH_STRING );
DirContext->SearchString.Buffer = NULL;
}
}
|