-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathprovider.cpp
1372 lines (1205 loc) · 35.7 KB
/
provider.cpp
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
/*++
Copyright (c) Alex Ionescu. All rights reserved.
Header Name:
provider.cpp
Abstract:
This module implements the RS5/19H1 System Call Provider for guest VMs.
Author:
Alex Ionescu (@aionescu) 12-Dec-2018 - Initial version
Environment:
Kernel mode only.
--*/
#include "provider.h"
static SEM_PROVIDER_CALLBACKS s_SemCallbacks;
auto
HookNtMapViewOfSection (
_In_ HANDLE SectionHandle,
_In_ HANDLE ProcessHandle,
_Inout_ _At_ (*BaseAddress,
_Readable_bytes_ (*ViewSize)
_Writable_bytes_ (*ViewSize)
_Post_readable_byte_size_ (*ViewSize)) PVOID *BaseAddress,
_In_ ULONG_PTR ZeroBits,
_In_ SIZE_T CommitSize,
_Inout_opt_ PLARGE_INTEGER SectionOffset,
_Inout_ PSIZE_T ViewSize,
_In_ SECTION_INHERIT InheritDisposition,
_In_ ULONG AllocationType,
_In_ ULONG Win32Protect
)
{
MEM_EXTENDED_PARAMETER extendedParam;
MEM_ADDRESS_REQUIREMENTS reqs;
auto status = STATUS_SUCCESS;
//
// Combinations of parameters that we don't wish to emulate aren't handled
//
if ((ZeroBits) || (CommitSize) || (InheritDisposition != 1))
{
status = STATUS_NOT_SUPPORTED;
goto HookExit;
}
//
// Nor are attempts to influence external host processes
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Check if this is a brand new commit
//
if (*BaseAddress == nullptr)
{
//
// Ask the kernel to only allocate in the region of valid guest memory
//
reqs.Alignment = 0;
reqs.LowestStartingAddress = s_LowestValidAddress;
reqs.HighestEndingAddress = s_HighestValidAddress;
extendedParam.Reserved = 0;
extendedParam.Pointer = &reqs;
extendedParam.Type = MemExtendedParameterAddressRequirements;
}
else if (!s_SemCallbacks.IsGuestMemory(*BaseAddress))
{
//
// This is a commit on top of a reservation -- it must be guest memory
//
status = STATUS_CONFLICTING_ADDRESSES;
goto HookExit;
}
//
// Ask the kernel to do the map, noting that an existing reservation means
// that we do not pass in extended parameters and simply re-use the base
//
status = NtMapViewOfSectionEx(SectionHandle,
ProcessHandle,
BaseAddress,
SectionOffset,
ViewSize,
AllocationType,
Win32Protect,
(*BaseAddress == nullptr) ?
&extendedParam : nullptr,
(*BaseAddress == nullptr));
//
// We expect all image mappings to 'fail' with this code, due to relocation
// records, which will then be fixed up by the loader on the guest side
//
if (status != STATUS_IMAGE_AT_DIFFERENT_BASE)
{
status = STATUS_NO_MEMORY;
goto HookExit;
}
//
// Finally, we must map the shared image in the GPA
//
auto hr = s_SemCallbacks.MapSharedImage(nullptr,
(ULONG_PTR)*BaseAddress,
*ViewSize);
if (FAILED(hr)) DbgRaiseAssertionFailure();
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtAllocateVirtualMemory (
_In_ HANDLE ProcessHandle,
_Inout_ _At_ (*BaseAddress,
_Readable_bytes_ (*RegionSize)
_Writable_bytes_ (*RegionSize)
_Post_readable_byte_size_ (*RegionSize)) PVOID *BaseAddress,
_In_ ULONG_PTR ZeroBits,
_Inout_ PSIZE_T RegionSize,
_In_ ULONG AllocationType,
_In_ ULONG Protect
)
{
MEM_EXTENDED_PARAMETER extendedParam;
MEM_ADDRESS_REQUIREMENTS reqs;
auto status = STATUS_SUCCESS;
//
// Combinations of parameters that we don't wish to emulate aren't handled
//
if (ZeroBits != 0)
{
status = STATUS_NOT_SUPPORTED;
goto HookExit;
}
//
// Nor are attempts to influence external host processes
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Check if this is a brand new commit
//
if (*BaseAddress == nullptr)
{
//
// Ask the kernel to only allocate in the region of valid guest memory
//
reqs.Alignment = 0;
reqs.LowestStartingAddress = s_LowestValidAddress;
reqs.HighestEndingAddress = s_HighestValidAddress;
extendedParam.Reserved = 0;
extendedParam.Pointer = &reqs;
extendedParam.Type = MemExtendedParameterAddressRequirements;
}
else if (!s_SemCallbacks.IsGuestMemory(*BaseAddress))
{
//
// This is a commit on top of a reservation -- it must be guest memory
//
status = STATUS_CONFLICTING_ADDRESSES;
goto HookExit;
}
//
// Ask the kernel to allocate, noting that an existing reservation means
// that we do not pass in extended parameters and simply re-use the base
//
status = NtAllocateVirtualMemoryEx(ProcessHandle,
BaseAddress,
RegionSize,
AllocationType,
Protect,
(*BaseAddress == nullptr) ?
&extendedParam : nullptr,
(*BaseAddress == nullptr));
if (!NT_SUCCESS(status))
{
goto HookExit;
}
//
// If memory was actually committed, we must map it in the GPA
//
if (AllocationType & MEM_COMMIT)
{
auto hr = s_SemCallbacks.MapSharedMemory(nullptr,
reinterpret_cast<ULONG_PTR>(
*BaseAddress),
*RegionSize,
nullptr);
if (FAILED(hr)) DbgRaiseAssertionFailure();
goto HookExit;
}
HookExit:
return EncodeStatus(status);
}
auto
HookNtAllocateVirtualMemoryEx (
_In_ HANDLE ProcessHandle,
_Inout_ _At_ (*BaseAddress,
_Readable_bytes_ (*RegionSize)
_Writable_bytes_ (*RegionSize)
_Post_readable_byte_size_ (*RegionSize)) PVOID *BaseAddress,
_Inout_ PSIZE_T RegionSize,
_In_ ULONG AllocationType,
_In_ ULONG PageProtection,
_Inout_updates_opt_(ParameterCount) PMEM_EXTENDED_PARAMETER Parameters,
_In_ ULONG ParameterCount
)
{
auto status = STATUS_SUCCESS;
//
// Check if the caller provided extended parameters
//
if (ParameterCount >= 1)
{
//
// The only one we support are the address requirement paremeters
//
if (Parameters->Type == MemExtendedParameterAddressRequirements)
{
//
// Which we override to specify that only guest memory must be used
//
auto reqs = reinterpret_cast<PMEM_ADDRESS_REQUIREMENTS>
(Parameters->Pointer);
reqs->LowestStartingAddress = s_LowestValidAddress;
reqs->HighestEndingAddress = s_HighestValidAddress;
}
else
{
status = STATUS_NOT_SUPPORTED;
goto HookExit;
}
}
else if (!s_SemCallbacks.IsGuestMemory(*BaseAddress))
{
//
// This is a commit on top of a reservation -- it must be guest memory
//
status = STATUS_CONFLICTING_ADDRESSES;
goto HookExit;
}
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Ask the kernel to allocate
//
status = NtAllocateVirtualMemoryEx(ProcessHandle,
BaseAddress,
RegionSize,
AllocationType,
PageProtection,
Parameters,
ParameterCount);
if (!NT_SUCCESS(status))
{
goto HookExit;
}
//
// If memory was actually committed, we must map it in the GPA
//
if (AllocationType & MEM_COMMIT)
{
auto hr = s_SemCallbacks.MapSharedMemory(nullptr,
reinterpret_cast<ULONG_PTR>
(*BaseAddress),
*RegionSize,
nullptr);
if (FAILED(hr)) DbgRaiseAssertionFailure();
goto HookExit;
}
HookExit:
return EncodeStatus(status);
}
auto
HookNtFreeVirtualMemory (
_In_ HANDLE ProcessHandle,
_Inout_ __drv_freesMem(Mem) PVOID *BaseAddress,
_Inout_ PSIZE_T RegionSize,
_In_ ULONG FreeType
)
{
auto status = STATUS_SUCCESS;
//
// If this is the loader trying to unmap the old PPB, make this a no-op
//
if (*BaseAddress == (PVOID)((ULONG_PTR)s_SemCallbacks.GetCurrentTeb()->ProcessEnvironmentBlock + 0x1000))
{
goto HookExit;
}
//
// Only guest memory should be freed
//
if (!s_SemCallbacks.IsGuestMemory(*BaseAddress))
{
status = STATUS_UNABLE_TO_FREE_VM;
goto HookExit;
}
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Unmap the respective GPA
//
auto hr = s_SemCallbacks.UnmapSharedMemory(nullptr,
reinterpret_cast<ULONG_PTR>
(*BaseAddress),
*RegionSize,
nullptr);
if (FAILED(hr)) DbgRaiseAssertionFailure();
//
// And then issue the call to the host kernel to free the VA
//
status = NtFreeVirtualMemory(ProcessHandle,
BaseAddress,
RegionSize,
FreeType);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtProtectVirtualMemory (
_In_ HANDLE ProcessHandle,
_Inout_ PVOID *BaseAddress,
_Inout_ PSIZE_T RegionSize,
_In_ ULONG NewProtect,
_Out_ PULONG OldProtect
)
{
auto status = STATUS_SUCCESS;
//
// Only guest memory should be protected
//
if (!s_SemCallbacks.IsGuestMemory(*BaseAddress))
{
status = STATUS_INVALID_PAGE_PROTECTION;
goto HookExit;
}
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Issue the call to the host kernel to protect the VA
//
status = NtProtectVirtualMemory(ProcessHandle,
BaseAddress,
RegionSize,
NewProtect,
OldProtect);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQueryDebugFilterState (
_In_ ULONG ComponentId,
_In_ ULONG Level
)
{
auto status = STATUS_SUCCESS;
//
// Get the host debug filter state
//
status = NtQueryDebugFilterState(ComponentId, Level);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtDuplicateObject (
_In_ HANDLE SourceProcessHandle,
_In_ HANDLE SourceHandle,
_In_opt_ HANDLE TargetProcessHandle,
_Out_opt_ PHANDLE TargetHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ ULONG HandleAttributes,
_In_ ULONG Options
)
{
auto status = STATUS_SUCCESS;
//
// Attempts to influence external host processes are blocked
//
if ((SourceProcessHandle != GetCurrentProcess()) ||
(TargetProcessHandle != GetCurrentProcess()))
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Ask the kernel to duplicate the handle
//
status = NtDuplicateObject(SourceProcessHandle,
SourceHandle,
TargetProcessHandle,
TargetHandle,
DesiredAccess,
HandleAttributes,
Options);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQueryVirtualMemory (
_In_ HANDLE ProcessHandle,
_In_opt_ PVOID BaseAddress,
_In_ MEMORY_INFORMATION_CLASS MemoryInformationClass,
_Out_writes_bytes_(MemoryInformationLength) PVOID MemoryInformation,
_In_ SIZE_T MemoryInformationLength,
_Out_opt_ PSIZE_T ReturnLength
)
{
auto status = STATUS_SUCCESS;
//
// Only guest memory should be queried, unless this is a working set dump
//
if (!(s_SemCallbacks.IsGuestMemory(BaseAddress)) &&
(MemoryInformationClass != 4))
{
status = STATUS_MEMORY_NOT_ALLOCATED;
goto HookExit;
}
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Call the host kernel to query the VAD
//
status = NtQueryVirtualMemory(ProcessHandle,
BaseAddress,
MemoryInformationClass,
MemoryInformation,
MemoryInformationLength,
ReturnLength);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQueryInformationProcess (
_In_ HANDLE ProcessHandle,
_In_ PROCESSINFOCLASS ProcessInformationClass,
_Out_writes_bytes_opt_(ProcessInformationLength) PVOID ProcessInformation,
_In_ ULONG ProcessInformationLength,
_Out_opt_ PULONG ReturnLength
)
{
auto status = STATUS_SUCCESS;
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Only handle these 2 basic classes
//
if ((ProcessInformationClass != ProcessBasicInformation) &&
(ProcessInformationClass != ProcessCookie))
{
status = STATUS_INVALID_INFO_CLASS;
goto HookExit;
}
//
// Call the host kernel to get information on the process
//
status = NtQueryInformationProcess(ProcessHandle,
ProcessInformationClass,
ProcessInformation,
ProcessInformationLength,
ReturnLength);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtTerminateProcess (
_In_opt_ HANDLE ProcessHandle,
_In_ NTSTATUS ExitStatus
)
{
auto status = STATUS_SUCCESS;
//
// Attempts to influence external host processes are blocked
//
if ((ProcessHandle) && (ProcessHandle != GetCurrentProcess()))
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Kill the host process that represents the guest
//
status = NtTerminateProcess(ProcessHandle, ExitStatus);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQuerySystemInformation (
_In_ SYSTEM_INFORMATION_CLASS SystemInformationClass,
_Out_writes_bytes_to_opt_(SystemInformationLength,
*ReturnLength) PVOID SystemInformation,
_In_ ULONG SystemInformationLength,
_Out_opt_ PULONG ReturnLength
)
{
auto status = STATUS_INVALID_INFO_CLASS;
//
// Special fast path for the loader check done on RS5+
//
if (SystemInformationClass == SystemHypervisorSharedPageInformation)
{
return EncodeFailureOk(status);
}
//
// Special fast path which helps the guest environment use the right limits
//
if (SystemInformationClass == SystemRangeStartInformation)
{
*reinterpret_cast<PULONG_PTR>(SystemInformation) = s_256GB;
status = STATUS_SUCCESS;
goto HookExit;
}
//
// We only implement the information classes below
//
if ((SystemInformationClass != SystemBasicInformation) &&
(SystemInformationClass != SystemFlushInformation) &&
(SystemInformationClass != SystemEmulationBasicInformation) &&
(SystemInformationClass != SystemNumaProcessorMap) &&
(SystemInformationClass != SystemTimeOfDayInformation))
{
status = STATUS_INVALID_INFO_CLASS;
goto HookExit;
}
//
// Call the host kernel to get the information
//
status = NtQuerySystemInformation(SystemInformationClass,
SystemInformation,
SystemInformationLength,
ReturnLength);
HookExit:
return EncodeStatus(status);
}
auto
HookNtSetInformationProcess (
_In_ HANDLE ProcessHandle,
_In_ PROCESSINFOCLASS ProcessInformationClass,
_In_reads_bytes_opt_(ProcessInformationLength) PVOID ProcessInformation,
_In_ ULONG ProcessInformationLength
)
{
auto status = STATUS_SUCCESS;
//
// Attempts to influence external host processes are blocked
//
if (ProcessHandle != GetCurrentProcess())
{
status = STATUS_ACCESS_DENIED;
goto HookExit;
}
//
// Only the console host owner is allowed to be set
//
if (ProcessInformationClass != ProcessOwnerInformation)
{
status = STATUS_INVALID_INFO_CLASS;
goto HookExit;
}
//
// Call the host kernel to set the information
//
status = NtSetInformationProcess(ProcessHandle,
ProcessInformationClass,
ProcessInformation,
ProcessInformationLength);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQueryVolumeInformationFile (
_In_ HANDLE FileHandle,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_Out_writes_bytes_(Length) PVOID FsInformation,
_In_ ULONG Length,
_In_ FS_INFORMATION_CLASS FsInformationClass
)
{
auto status = STATUS_SUCCESS;
//
// Only attribute information can be queried
//
if (FsInformationClass != FileFsAttributeInformation)
{
status = STATUS_INVALID_INFO_CLASS;
goto HookExit;
}
//
// Call the host kernel to query the information
// @TODO: Add handle tracking
//
status = NtQueryVolumeInformationFile(FileHandle,
IoStatusBlock,
FsInformation,
Length,
FsInformationClass);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQueryPerformanceCounter (
_Out_ PLARGE_INTEGER PerformanceCounter,
_Out_opt_ PLARGE_INTEGER PerformanceFrequency
)
{
auto status = STATUS_SUCCESS;
//
// Get the host QPC frequency and value
//
status = NtQueryPerformanceCounter(PerformanceCounter,
PerformanceFrequency);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtOpenFile (
_Out_ PHANDLE FileHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ POBJECT_ATTRIBUTES ObjectAttributes,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_ ULONG ShareAccess,
_In_ ULONG OpenOptions
)
{
auto status = STATUS_SUCCESS;
//
// Open the file requested by the guest
// @TODO: Add handle tracking
//
status = NtOpenFile(FileHandle,
DesiredAccess,
ObjectAttributes,
IoStatusBlock,
ShareAccess,
OpenOptions);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtCreateFile (
_Out_ PHANDLE FileHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ POBJECT_ATTRIBUTES ObjectAttributes,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_opt_ PLARGE_INTEGER AllocationSize,
_In_ ULONG FileAttributes,
_In_ ULONG ShareAccess,
_In_ ULONG CreateDisposition,
_In_ ULONG CreateOptions,
_In_reads_bytes_opt_(EaLength) PVOID EaBuffer,
_In_ ULONG EaLength
)
{
auto status = STATUS_SUCCESS;
//
// Create the file requested by the guest
// @TODO: Add handle tracking
//
status = NtCreateFile(FileHandle,
DesiredAccess,
ObjectAttributes,
IoStatusBlock,
AllocationSize,
FileAttributes,
ShareAccess,
CreateDisposition,
CreateOptions,
EaBuffer,
EaLength);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtDeviceIoControlFile (
_In_ HANDLE FileHandle,
_In_opt_ HANDLE Event,
_In_opt_ PIO_APC_ROUTINE ApcRoutine,
_In_opt_ PVOID ApcContext,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_ ULONG IoControlCode,
_In_reads_bytes_opt_(InputBufferLength) PVOID InputBuffer,
_In_ ULONG InputBufferLength,
_Out_writes_bytes_opt_(OutputBufferLength) PVOID OutputBuffer,
_In_ ULONG OutputBufferLength
)
{
auto status = STATUS_SUCCESS;
//
// Send the IOCTL to the device requested by the guest
// @TODO: Add handle tracking
//
status = NtDeviceIoControlFile(FileHandle,
Event,
ApcRoutine,
ApcContext,
IoStatusBlock,
IoControlCode,
InputBuffer,
InputBufferLength,
OutputBuffer,
OutputBufferLength);
if (!NT_SUCCESS(status))
{
//
// If this is a CONDRV message that's failing with an unsupported code
// then allow the failure, as this is expected even on a real host
//
if ((IoControlCode == 0x00500016) && (status == 0xC00700BB))
{
return EncodeFailureOk(status);
}
}
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtWriteFile (
_In_ HANDLE FileHandle,
_In_opt_ HANDLE Event,
_In_opt_ PIO_APC_ROUTINE ApcRoutine,
_In_opt_ PVOID ApcContext,
_Out_ PIO_STATUS_BLOCK IoStatusBlock,
_In_reads_bytes_(Length) PVOID Buffer,
_In_ ULONG Length,
_In_opt_ PLARGE_INTEGER ByteOffset,
_In_opt_ PULONG Key
)
{
auto status = STATUS_SUCCESS;
//
// Write into the file requested by the guest
// @TODO: Add handle tracking
//
status = NtWriteFile(FileHandle,
Event,
ApcRoutine,
ApcContext,
IoStatusBlock,
Buffer,
Length,
ByteOffset,
Key);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtCreateEvent (
_Out_ PHANDLE EventHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_opt_ POBJECT_ATTRIBUTES ObjectAttributes,
_In_ EVENT_TYPE EventType,
_In_ BOOLEAN InitialState
)
{
auto status = STATUS_SUCCESS;
//
// Create the event requested by the guest
// @TODO: Add handle tracking
//
status = NtCreateEvent(EventHandle,
DesiredAccess,
ObjectAttributes,
EventType,
InitialState);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtSetEvent (
_In_ HANDLE EventHandle,
_Out_opt_ PLONG PreviousState
)
{
auto status = STATUS_SUCCESS;
//
// Signal the event requested by the guest
// @TODO: Add handle tracking
//
status = NtSetEvent(EventHandle, PreviousState);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtOpenDirectoryObject (
_Out_ PHANDLE DirectoryHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ POBJECT_ATTRIBUTES ObjectAttributes
)
{
auto status = STATUS_SUCCESS;
//
// Open the object directory requested by the guest
// @TODO: Add handle tracking
//
status = NtOpenDirectoryObject(DirectoryHandle,
DesiredAccess,
ObjectAttributes);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtOpenSymbolicLinkObject (
_Out_ PHANDLE LinkHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ POBJECT_ATTRIBUTES ObjectAttributes
)
{
auto status = STATUS_SUCCESS;
//
// Open the symbolic link object requested by the guest
// @TODO: Add handle tracking
//
status = NtOpenSymbolicLinkObject(LinkHandle,
DesiredAccess,
ObjectAttributes);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtQuerySymbolicLinkObject (
_In_ HANDLE LinkHandle,
_Inout_ PUNICODE_STRING LinkTarget,
_Out_opt_ PULONG ReturnedLength
)
{
auto status = STATUS_SUCCESS;
//
// Query the symbolic link object requested by the guest
// @TODO: Add handle tracking
//
status = NtQuerySymbolicLinkObject(LinkHandle, LinkTarget, ReturnedLength);
goto HookExit;
HookExit:
return EncodeStatus(status);
}
auto
HookNtOpenSection (
_Out_ PHANDLE SectionHandle,
_In_ ACCESS_MASK DesiredAccess,
_In_ POBJECT_ATTRIBUTES ObjectAttributes
)