-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathNtUtils.Com.pas
1303 lines (1067 loc) · 31.8 KB
/
NtUtils.Com.pas
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
unit NtUtils.Com;
{
This module allows working with variant types and IDispatch without
relying on System.Variant.
}
interface
uses
Ntapi.ObjBase, Ntapi.ObjIdl, Ntapi.winrt, DelphiApi.Reflection,
Ntapi.Versions, NtUtils, DelphiUtils.AutoObjects;
type
IRtlxComDll = interface (IAutoPointer)
function GetLoadName: String;
property LoadName: String read GetLoadName;
function CanUnloadNow: Boolean;
// Call DllGetClassObject
function GetClassObject(
const Clsid: TClsid;
out ClassFactory: IClassFactory;
[opt] const ClassNameHint: String = ''
): TNtxStatus;
// Call DllGetClassObject followed by IClassFactory::CreateInstance
function CreateInstance(
const Clsid: TClsid;
const Iid: TIid;
out pv;
[opt] const ClassNameHint: String = ''
): TNtxStatus;
// Call DllGetActivationFactory
function GetActivationFactory(
const ActivatableClassId: String;
out Factory: IActivationFactory
): TNtxStatus;
// Call DllGetActivationFactory followed by IActivationFactory::ActivateInstance
function ActivateInstance(
const ActivatableClassId: String;
out Instance: IInspectable
): TNtxStatus;
end;
IHString = IAutoPointer<THString>;
{ Manual COM / Manual WinRT }
// Manually load a COM-compatible DLL
function RtlxComLoadDll(
const DllName: String;
out Dll: IRtlxComDll
): TNtxStatus;
// Unload unused manually loaded COM DLLs
procedure RtlxComFreeUnusedLibraries;
// Manually create a COM class factory from a DLL
function RtlxComGetClassFactory(
const DllName: String;
const Clsid: TClsid;
out ClassFactory: IClassFactory;
[opt] const ClassNameHint: String = ''
): TNtxStatus;
// Manually create a COM object from a DLL
function RtlxComCreateInstance(
const DllName: String;
const Clsid: TClsid;
const Iid: TIid;
out pv;
[opt] const ClassNameHint: String = ''
): TNtxStatus;
// Manually create a WinRT activation factory from a DLL
function RtlxComGetActivationFactory(
const DllName: String;
const ActivatableClassId: String;
out Factory: IActivationFactory
): TNtxStatus;
// Manually create a WinRT object from a DLL
function RtlxComActivateInstance(
const DllName: String;
const ActivatableClassId: String;
out Instance: IInspectable
): TNtxStatus;
{ COM Init }
// Allow COM initialization to proceed without lpacCom capability
function ComxSuppressCapabilityCheck(
): TNtxStatus;
// Initialize COM for the current process/thread
[Result: ReleaseWith('CoUninitialize')]
function ComxInitializeEx(
PreferredMode: TCoInitMode = COINIT_APARTMENTTHREADED
): TNtxStatus;
// Initialize COM for the process/thread and uninitialize it later
function ComxInitializeExAuto(
out Uninitializer: IAutoReleasable;
PreferredMode: TCoInitMode = COINIT_APARTMENTTHREADED
): TNtxStatus;
// Determine the appartment type on the current thread
function ComxGetApartmentType(
out ApartmentType: TAptType;
out ApartmentQualifier: TAptTypeQualifier
): TNtxStatus;
// Check if COM has been initialized on the current thread
function ComxIsInitialized(
): Boolean;
// Initialize implicit MTA on the current thread if it has no apartment
[MinOSVersion(OsWin8)]
function ComxInitializeImplicit(
[out, opt, ReleaseWith('ComxUninitializeImplicit')]
Cookie: PCoMtaUsageCookie = nil
): TNtxStatus;
// Release a previous implicit MTA initialization
[MinOSVersion(OsWin8)]
function ComxUninitializeImplicit(
Cookie: TCoMtaUsageCookie
): TNtxStatus;
// Initialize implicit MTA and release it later
[MinOSVersion(OsWin8)]
function ComxInitializeImplicitAuto(
out Uninitializer: IAutoReleasable
): TNtxStatus;
// Initialize implicit MTA and release it on this module unload
[MinOSVersion(OsWin8)]
function ComxInitializeImplicitOnce(
): TNtxStatus;
// Make sure COM is initialized (with any apartment type) and add a reference
function ComxEnsureInitialized(
out Uninitializer: IAutoReleasable
): TNtxStatus;
{ Base COM }
// Create a class factory from a CLSID
[RequiresCOM]
function ComxGetClassFactory(
const Clsid: TClsid;
out ClassFactory: IClassFactory;
[opt] const ClassNameHint: String = '';
ClsContext: TClsCtx = CLSCTX_ALL
): TNtxStatus;
// Create a class factory via CoGetClassObject or fallback to manual COM use
function ComxGetClassFactoryWithFallback(
const DllName: String;
const Clsid: TClsid;
out ClassFactory: IClassFactory;
[opt] const ClassNameHint: String = '';
ClsContext: TClsCtx = CLSCTX_ALL
): TNtxStatus;
// Create a COM object from a CLSID
[RequiresCOM]
function ComxCreateInstance(
const Clsid: TClsid;
const Iid: TIid;
out pv;
[opt] const ClassNameHint: String = '';
ClsContext: TClsCtx = CLSCTX_ALL
): TNtxStatus;
// Create an in-process COM object via CoCreateInstance or fall back to loading
// it directly without using COM facilities
function ComxCreateInstanceWithFallback(
const DllName: String;
const Clsid: TClsid;
const Iid: TIid;
out pv;
[opt] const ClassNameHint: String = '';
ClsContext: TClsCtx = CLSCTX_ALL
): TNtxStatus;
{ Variants }
// Variant creation helpers
function VarEmpty: TVarData;
function VarFromWord(const Value: Word): TVarData;
function VarFromCardinal(const Value: Cardinal): TVarData;
function VarFromInteger(const Value: Integer): TVarData;
function VarFromIntegerRef(const [ref] Value: Integer): TVarData;
function VarFromWideString(const [ref] Value: WideString): TVarData;
function VarFromIDispatch(const Value: IDispatch): TVarData;
{ IDispatch helpers }
// Bind to a COM IDispatch object by name
function DispxBindToObject(
const ObjectName: String;
out Dispatch: IDispatch
): TNtxStatus;
// Lookup an ID of an IDispatch name
function DispxGetNameId(
const Dispatch: IDispatch;
const Name: String;
out DispId: TDispID
): TNtxStatus;
// Invoke IDispatch
function DispxInvoke(
const Dispatch: IDispatch;
const DispId: TDispID;
const Flags: Word;
var Params: TDispParams;
[out, opt] VarResult: Pointer
): TNtxStatus;
// Invoke IDispatch using a string name
function DispxInvokeByName(
const Dispatch: IDispatch;
const Name: String;
const Flags: Word;
var Params: TDispParams;
[out, opt] VarResult: Pointer
): TNtxStatus;
// Retrieve a property via an IDispatch by ID
function DispxGetProperty(
const Dispatch: IDispatch;
const DispId: TDispID;
out Value: TVarData
): TNtxStatus;
// Retrieve a property via an IDispatch by name
function DispxGetPropertyByName(
const Dispatch: IDispatch;
const Name: String;
out Value: TVarData
): TNtxStatus;
// Assign a property via an IDispatch by ID
function DispxSetProperty(
const Dispatch: IDispatch;
const DispId: TDispID;
const Value: TVarData
): TNtxStatus;
// Assign a property via an IDispatch by name
function DispxSetPropertyByName(
const Dispatch: IDispatch;
const Name: String;
const Value: TVarData
): TNtxStatus;
// Call a method via IDispatch by ID
function DispxCallMethod(
const Dispatch: IDispatch;
const DispId: TDispID;
[opt] const Parameters: TArray<TVarData> = nil;
[out, opt] VarResult: PVarData = nil
): TNtxStatus;
// Call a method via IDispatch by name
function DispxCallMethodByName(
const Dispatch: IDispatch;
const Name: String;
[opt] const Parameters: TArray<TVarData> = nil;
[out, opt] VarResult: PVarData = nil
): TNtxStatus;
{ WinRT strings }
// Capture ownership of a WinRT string
[MinOSVersion(OsWin8)]
function RoxCaptureString(
[in, opt] Buffer: THString
): IHString;
// Create a WinRT string from a Delphi string
[MinOSVersion(OsWin8)]
function RoxCreateString(
const Source: String;
out Str: IHString
): TNtxStatus;
// Create a Delphi string from a WinRT string
[MinOSVersion(OsWin8)]
function RoxSaveString(
[in, opt] Str: THString
): String;
{ WinRT }
// Uninitialize the Windows Runtime
[MinOSVersion(OsWin8)]
procedure RoxUninitialize;
// Initialize the Windows Runtime
[MinOSVersion(OsWin8)]
function RoxInitialize(
InitType: TRoInitType = RO_INIT_MULTITHREADED
): TNtxStatus;
// Initialize the Windows Runtime and uninitialize it later
[MinOSVersion(OsWin8)]
function RoxInitializeAuto(
out Uninitializer: IAutoReleasable;
InitType: TRoInitType = RO_INIT_MULTITHREADED
): TNtxStatus;
// Initialize the Windows Runtime and uninitialize at this module finalization
[MinOSVersion(OsWin8)]
function RoxInitializeOnce(
InitType: TRoInitType = RO_INIT_MULTITHREADED
): TNtxStatus;
// Create a WinRT activation factory
[RequiresWinRT]
[MinOSVersion(OsWin8)]
function RoxGetActivationFactory(
const ActivatableClassId: String;
out Factory: IActivationFactory
): TNtxStatus;
// Create a WinRT activation factory via RoGetActivationFactory or fallback
// to manual WinRT
[MinOSVersion(OsWin8)]
function RoxGetActivationFactoryWithFallback(
const DllName: String;
const ActivatableClassId: String;
out Factory: IActivationFactory
): TNtxStatus;
// Activate a WinRT class
[RequiresWinRT]
[MinOSVersion(OsWin8)]
function RoxActivateInstance(
const ActivatableClassId: String;
out Inspectable: IInspectable
): TNtxStatus;
// Activate a WinRT class via RoActivateInstance or fallback
// to manual WinRT
[MinOSVersion(OsWin8)]
function RoxActivateInstanceWithFallback(
const DllName: String;
const ActivatableClassId: String;
out Inspectable: IInspectable
): TNtxStatus;
implementation
uses
Ntapi.WinError, Ntapi.WinNt, Ntapi.ntdef, Ntapi.ntstatus, Ntapi.ntpebteb,
NtUtils.Errors, NtUtils.Ldr, NtUtils.AntiHooking, NtUtils.Tokens,
NtUtils.Tokens.Info, NtUtils.Synchronization, NtUtils.SysUtils,
DelphiUtils.Arrays;
{$BOOLEVAL OFF}
{$IFOPT R+}{$DEFINE R+}{$ENDIF}
{$IFOPT Q+}{$DEFINE Q+}{$ENDIF}
type
TRtlxComDll = class (TCustomAutoPointer, IRtlxComDll)
protected
FName: String;
FDllCanUnloadNow: TDllCanUnloadNow;
FDllGetClassObject: TDllGetClassObject;
FDllGetActivationFactory: TDllGetActivationFactory;
procedure Release; override;
constructor Create(
const Name: String;
DllBase: Pointer;
ADllCanUnloadNow: TDllCanUnloadNow;
ADllGetClassObject: TDllGetClassObject;
ADllGetActivationFactory: TDllGetActivationFactory
);
public
class var StorageLock: TRtlSRWLock;
class var Storage: TArray<IRtlxComDll>;
public
function GetLoadName: String;
function CanUnloadNow: Boolean;
function GetClassObject(
const clsid: TClsid;
out pv: IClassFactory;
const ClassNameHint: String
): TNtxStatus;
function CreateInstance(
const Clsid: TClsid;
const Iid: TIid;
out pv;
const ClassNameHint: String
): TNtxStatus;
function GetActivationFactory(
const ActivatableClassId: String;
out factory: IActivationFactory
): TNtxStatus;
function ActivateInstance(
const ActivatableClassId: String;
out Instance: IInspectable
): TNtxStatus;
end;
{ TRtlxComDll }
function TRtlxComDll.ActivateInstance;
var
Factory: IActivationFactory;
begin
Result := GetActivationFactory(ActivatableClassId, Factory);
if not Result.IsSuccess then
Exit;
Result.Location := 'IActivationFactory::ActivateInstance';
Result.LastCall.Parameter := ActivatableClassId;
Result.HResult := Factory.ActivateInstance(Instance);
end;
function TRtlxComDll.CanUnloadNow;
begin
// If there is no DllCanUnloadNow, allow unloading only if there are no
// other COM exports
if not Assigned(FDllCanUnloadNow) and not Assigned(FDllGetClassObject) and
not Assigned(FDllGetActivationFactory) then
Exit(True);
try
Result := (FDllCanUnloadNow = S_OK);
except
// If the DLL throws an exception in the callback, don't touch it; it
// doesn't like manual COM
Result := False;
end;
end;
constructor TRtlxComDll.Create;
begin
inherited Capture(DllBase);
FName := Name;
FDllCanUnloadNow := ADllCanUnloadNow;
FDllGetClassObject := ADllGetClassObject;
FDllGetActivationFactory := ADllGetActivationFactory;
end;
function TRtlxComDll.CreateInstance;
var
Factory: IClassFactory;
begin
Result := GetClassObject(Clsid, Factory, ClassNameHint);
if not Result.IsSuccess then
Exit;
Result.Location := 'IClassFactory::CreateInstance';
Result.LastCall.Parameter := ClassNameHint;
Result.HResult := Factory.CreateInstance(nil, iid, pv);
end;
function TRtlxComDll.GetActivationFactory;
var
ActivatableClassIdStr: IHString;
begin
if not Assigned(FDllGetActivationFactory) then
begin
Result.Location := 'LdrGetProcedureAddress';
Result.LastCall.Parameter := RtlxExtractNamePath(FName) +
'!DllGetActivationFactory';
Result.Status := STATUS_ENTRYPOINT_NOT_FOUND;
Exit;
end;
Result := RoxCreateString(ActivatableClassId, ActivatableClassIdStr);
if not Result.IsSuccess then
Exit;
Result.Location := 'DllGetActivationFactory';
Result.LastCall.Parameter := ActivatableClassId;
Result.HResult := FDllGetActivationFactory(ActivatableClassIdStr.Data,
factory);
end;
function TRtlxComDll.GetClassObject;
begin
if not Assigned(FDllGetClassObject) then
begin
Result.Location := 'LdrGetProcedureAddress';
Result.LastCall.Parameter := RtlxExtractNamePath(FName) +
'!DllGetClassObject';
Result.Status := STATUS_ENTRYPOINT_NOT_FOUND;
Exit;
end;
Result.Location := 'DllGetClassObject';
Result.LastCall.Parameter := ClassNameHint;
Result.HResult := FDllGetClassObject(clsid, IClassFactory, pv);
end;
function TRtlxComDll.GetLoadName;
begin
Result := FName;
end;
procedure TRtlxComDll.Release;
begin
// Allow the DLL to prevent its unloading. Note that we are supposed to reach
// this code when either the DLL is okay with being unloaded or it's the last
// call (i.e., this module unload) since the storage should always keep the
// last reference to the object.
if Assigned(FData) and CanUnloadNow then
LdrxUnloadDll(FData);
FData := nil;
inherited;
end;
{ Manual COM }
function RtlxComLoadDll;
var
Lock: IAutoReleasable;
Index: Integer;
Module: IAutoPointer;
ADllCanUnloadNow, ADllGetClassObject, ADllGetActivationFactory: Pointer;
begin
// Synchronize access to the storage
Lock := RtlxAcquireSRWLockExclusive(@TRtlxComDll.StorageLock);
// Check if we already have en entry for the DLL
Index := TArray.BinarySearchEx<IRtlxComDll>(TRtlxComDll.Storage,
function (const Entry: IRtlxComDll): Integer
begin
Result := RtlxCompareStrings(Entry.LoadName, DllName);
end
);
if Index >= 0 then
begin
// Found an existing entry
Dll := TRtlxComDll.Storage[Index];
Result := NtxSuccess;
Exit;
end;
// Load the DLL
Result := LdrxLoadDllAuto(DllName, Module);
if not Result.IsSuccess then
Exit;
// Locate the unload checker export
if not LdrxGetProcedureAddress(Module.Data, 'DllCanUnloadNow',
ADllCanUnloadNow).IsSuccess then
ADllCanUnloadNow := nil;
// Locate the class factory export
if not LdrxGetProcedureAddress(Module.Data, 'DllGetClassObject',
ADllGetClassObject).IsSuccess then
ADllGetClassObject := nil;
// Locate the activation factory export
if not LdrxGetProcedureAddress(Module.Data, 'DllGetActivationFactory',
ADllGetActivationFactory).IsSuccess then
ADllGetActivationFactory := nil;
// Transfer DLL ownership to the wrapper
Dll := TRtlxComDll.Create(DllName, Module.Data, ADllGetClassObject,
ADllCanUnloadNow, ADllGetActivationFactory);
Module.AutoRelease := False;
// Register it in the storage
Insert(Dll, TRtlxComDll.Storage, -(Index + 1));
end;
procedure RtlxComFreeUnusedLibraries;
var
Lock: IAutoReleasable;
i, Count: Integer;
WeakRef: Weak<IRtlxComDll>;
begin
// Synchronize access to the storage
Lock := RtlxAcquireSRWLockExclusive(@TRtlxComDll.StorageLock);
Count := 0;
for i := 0 to High(TRtlxComDll.Storage) do
if TRtlxComDll.Storage[i].CanUnloadNow then
begin
// The DLL reports that it's not in use.
// Capture a weak reference and release the strong one
WeakRef := TRtlxComDll.Storage[i];
TRtlxComDll.Storage[i] := nil;
// If we can upgrade the weak reference back, there are other strong
// references, so we keep the object
if WeakRef.Upgrade(TRtlxComDll.Storage[i]) then
Inc(Count);
end
else
begin
// The DLL is not ready to unload; keep the object
Inc(Count);
end;
// Truncate if necessary
if Length(TRtlxComDll.Storage) <> Count then
SetLength(TRtlxComDll.Storage, Count);
end;
function RtlxComGetClassFactory;
var
Dll: IRtlxComDll;
begin
Result := RtlxComLoadDll(DllName, Dll);
if not Result.IsSuccess then
Exit;
Result := Dll.GetClassObject(Clsid, ClassFactory, ClassNameHint);
end;
function RtlxComCreateInstance;
var
Dll: IRtlxComDll;
begin
Result := RtlxComLoadDll(DllName, Dll);
if not Result.IsSuccess then
Exit;
Result := Dll.CreateInstance(Clsid, Iid, pv, ClassNameHint);
end;
function RtlxComGetActivationFactory;
var
Dll: IRtlxComDll;
begin
Result := RtlxComLoadDll(DllName, Dll);
if not Result.IsSuccess then
Exit;
Result := Dll.GetActivationFactory(ActivatableClassId, Factory);
end;
function RtlxComActivateInstance;
var
Dll: IRtlxComDll;
begin
Result := RtlxComLoadDll(DllName, Dll);
if not Result.IsSuccess then
Exit;
Result := Dll.ActivateInstance(ActivatableClassId, Instance);
end;
{ Base COM }
var
// We want to undo hooking on module unload
CapabilitySuppressionInitialized: TRtlRunOnce;
CapabilitySuppressionReverter: IAutoReleasable;
function ComxpConfirmCapability(
[in, opt] TokenHandle: THandle;
[in] CapabilitySidToCheck: PSid;
[out] out HasCapability: Boolean
): NTSTATUS; stdcall;
begin
try
HasCapability := True;
Result := STATUS_SUCCESS;
except
Result := STATUS_ACCESS_VIOLATION;
end;
end;
function ComxSuppressCapabilityCheck;
var
Init: IAcquiredRunOnce;
IsLpac: Boolean;
begin
// Already called?
if not RtlxRunOnceBegin(@CapabilitySuppressionInitialized, Init) then
Exit(NtxSuccess);
// No capability checks before RS2
if not RtlOsVersionAtLeast(OsWin10RS2) then
begin
Init.Complete;
Exit(NtxSuccess);
end;
// No capability checks for non-LPAC tokens
if NtxQueryLpacToken(NtxCurrentProcessToken, IsLpac).IsSuccess and
not IsLpac then
begin
Init.Complete;
Exit(NtxSuccess);
end;
// Redirect the capability checking function
Result := RtlxInstallIATHook(CapabilitySuppressionReverter, combase, ntdll,
'RtlCheckTokenCapability', @ComxpConfirmCapability);
if Result.IsSuccess then
Init.Complete;
end;
function ComxInitializeEx;
begin
Result.Location := 'CoInitializeEx';
Result.HResultAllowFalse := CoInitializeEx(nil, PreferredMode);
// S_FALSE indicates that COM is already initialized; RPC_E_CHANGED_MODE means
// that someone already initialized COM using a different mode. Use it, since
// we still need to add a reference.
if Result.HResult = RPC_E_CHANGED_MODE then
Result.HResultAllowFalse := CoInitializeEx(nil, PreferredMode xor
COINIT_APARTMENTTHREADED);
end;
function ComxInitializeExAuto;
var
CallingThread: TThreadId;
begin
Result := ComxInitializeEx(PreferredMode);
if not Result.IsSuccess then
Exit;
// Record the calling thread since COM init is thread-specific
CallingThread := NtCurrentTeb.ClientID.UniqueThread;
Uninitializer := Auto.Delay(
procedure
begin
// Make sure uninitialization runs on the same thread
if CallingThread = NtCurrentTeb.ClientID.UniqueThread then
CoUninitialize;
end
);
end;
function ComxGetApartmentType;
begin
Result.Location := 'CoGetApartmentType';
Result.HResult := CoGetApartmentType(ApartmentType, ApartmentQualifier);
end;
function ComxIsInitialized;
var
ApartmentType: TAptType;
ApartmentQualifier: TAptTypeQualifier;
begin
Result := ComxGetApartmentType(ApartmentType, ApartmentQualifier).IsSuccess;
end;
function ComxInitializeImplicit;
var
CookieValue: TCoMtaUsageCookie;
begin
Result := LdrxCheckDelayedImport(delayed_CoIncrementMTAUsage);
if not Result.IsSuccess then
Exit;
Result.Location := 'CoIncrementMTAUsage';
Result.HResult := CoIncrementMTAUsage(CookieValue);
if Result.IsSuccess and Assigned(Cookie) then
Cookie^ := CookieValue;
end;
function ComxUninitializeImplicit;
begin
Result := LdrxCheckDelayedImport(delayed_CoDecrementMTAUsage);
if not Result.IsSuccess then
Exit;
Result.Location := 'CoDecrementMTAUsage';
Result.HResult := CoDecrementMTAUsage(Cookie);
end;
function ComxInitializeImplicitAuto;
var
Cookie: TCoMtaUsageCookie;
begin
Result := ComxInitializeImplicit(@Cookie);
if Result.IsSuccess then
Uninitializer := Auto.Delay(
procedure
begin
ComxUninitializeImplicit(Cookie);
end
);
end;
var
// We want to release implicit MTA reference on module unload
ImplicitMTAInitialized: TRtlRunOnce;
ImplicitMTAUninitializer: IAutoReleasable;
function ComxInitializeImplicitOnce;
var
Init: IAcquiredRunOnce;
begin
// Already called?
if not RtlxRunOnceBegin(@ImplicitMTAInitialized, Init) then
Exit(NtxSuccess);
// Initialize
Result := ComxInitializeImplicitAuto(ImplicitMTAUninitializer);
if Result.IsSuccess then
Init.Complete;
end;
function ComxEnsureInitialized;
var
ApartmentType: TAptType;
ApartmentQualifier: TAptTypeQualifier;
PreferredMode: TCoInitMode;
begin
// Prefer an implicit MTA reference which is compatible with existing/future
// aparatments
Result := ComxInitializeImplicitAuto(Uninitializer);
if Result.IsSuccess then
Exit;
// Determine if we are already in an apartment
Result := ComxGetApartmentType(ApartmentType, ApartmentQualifier);
// Choose the mode to align with the existing one or fallback to MTA
PreferredMode := COINIT_MULTITHREADED;
if Result.IsSuccess then
case ApartmentType of
APTTYPE_MAINSTA, APTTYPE_STA:
PreferredMode := COINIT_APARTMENTTHREADED;
APTTYPE_MTA:
PreferredMode := COINIT_MULTITHREADED;
APTTYPE_NA:
case ApartmentQualifier of
APTTYPEQUALIFIER_NA_ON_MAINSTA, APTTYPEQUALIFIER_NA_ON_STA,
APTTYPEQUALIFIER_APPLICATION_STA:
PreferredMode := COINIT_APARTMENTTHREADED;
APTTYPEQUALIFIER_NA_ON_MTA, APTTYPEQUALIFIER_NA_ON_IMPLICIT_MTA:
PreferredMode := COINIT_MULTITHREADED;
end;
end;
// Use a regular initialization reference
Result := ComxInitializeExAuto(Uninitializer, PreferredMode);
end;
{ Base COM }
function ComxGetClassFactory;
begin
Result.Location := 'CoGetClassObject';
Result.LastCall.Parameter := ClassNameHint;
Result.HResult := CoGetClassObject(Clsid, ClsContext, nil, IClassFactory,
ClassFactory);
end;
function ComxGetClassFactoryWithFallback;
begin
Result := ComxGetClassFactory(Clsid, ClassFactory, ClassNameHint,
ClsContext);
if not Result.IsSuccess then
Result := RtlxComGetClassFactory(DllName, Clsid, ClassFactory,
ClassNameHint);
end;
function ComxCreateInstance;
begin
Result.Location := 'CoCreateInstance';
Result.LastCall.Parameter := ClassNameHint;
Result.HResult := CoCreateInstance(clsid, nil, ClsContext, iid, pv);
end;
function ComxCreateInstanceWithFallback;
begin
Result := ComxCreateInstance(Clsid, Iid, pv, ClassNameHint, ClsContext);
if not Result.IsSuccess then
Result := RtlxComCreateInstance(DllName, Clsid, Iid, pv, ClassNameHint);
end;
{ Variant helpers }
function VarEmpty;
begin
VariantInit(Result);
end;
function VarFromWord;
begin
VariantInit(Result);
Result.VType := varWord;
Result.VWord := Value;
end;
function VarFromCardinal;
begin
VariantInit(Result);
{$IF CompilerVersion >= 32}
Result.VType := varUInt32;
Result.VUInt32 := Value;
{$ELSE}
Result.VType := varLongWord;
Result.VLongWord := Value;
{$ENDIF}
end;
function VarFromInteger;
begin
VariantInit(Result);
Result.VType := varInteger;
Result.VInteger := Value;
end;
function VarFromIntegerRef;
begin
VariantInit(Result);
Result.VType := varInteger or varByRef;
Result.VPointer := @Value;
end;
function VarFromWideString;
begin
VariantInit(Result);
if Value <> '' then
begin
Result.VType := varOleStr;
Result.VOleStr := PWideChar(Value);
end;
end;
function VarFromIDispatch;
begin
VariantInit(Result);
Result.VType := varDispatch;
Result.VDispatch := Pointer(Value);
end;
{ Binding helpers }
function DispxBindToObject;
var
BindCtx: IBindCtx;
Moniker: IMoniker;
chEaten: Cardinal;
begin
Result.Location := 'CreateBindCtx';
Result.HResult := CreateBindCtx(0, BindCtx);
if not Result.IsSuccess then
Exit;
Result.Location := 'MkParseDisplayName';
Result.LastCall.Parameter := ObjectName;
Result.HResult := MkParseDisplayName(BindCtx, StringToOleStr(ObjectName),
chEaten, Moniker);
if not Result.IsSuccess then
Exit;
Result.Location := 'IMoniker::BindToObject';
Result.LastCall.Parameter := ObjectName;
Result.HResult := Moniker.BindToObject(BindCtx, nil, IDispatch, Dispatch);
end;
{ IDispatch invocation helpers }
function DispxGetNameId;
var
WideName: WideString;
begin
WideName := Name;