-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathNtUtils.Packages.pas
1392 lines (1091 loc) · 36.8 KB
/
NtUtils.Packages.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.Packages;
{
This module provides functions for retrieving information about packaged
applications.
}
interface
uses
Ntapi.WinNt, Ntapi.appmodel, Ntapi.Versions, DelphiApi.Reflection, NtUtils;
(*
Formats:
{FullName} = {Name}_{Version}_{Architecture}_{ResourceId}_{PublisherId}
{FamilyName} = {Name}_{PublisherId}
{AppUserModelId} = {FamilyName}!{RelativeAppId}
Examples:
"Microsoft.MSIXPackagingTool_1.2023.319.0_x64__8wekyb3d8bbwe" - Full Name
"Microsoft.MSIXPackagingTool_8wekyb3d8bbwe!Msix.App" - App user model ID
*)
type
IPackageInfoReference = IAutoPointer;
TPkgxPackageId = record
ProcessorArchitecture: TProcessorArchitecture32;
Version: TPackageVersion;
Name: String;
Publisher: String;
ResourceID: String;
PublisherID: String;
end;
TPkgxPackageNameAndProperties = record
FullName: String;
Properties: TPackageProperties;
end;
TPkgxPackageInfo = record
Properties: TPackageProperties;
Path: String;
PackageFullName: String;
PackageFamilyName: String;
[Aggregate] ID: TPkgxPackageId;
end;
{ Deriving/conversion }
// Construct full package name from its identification information
[MinOSVersion(OsWin8)]
function PkgxDeriveFullNameFromId(
out FullName: String;
const PackageId: TPkgxPackageId
): TNtxStatus;
// Construct package family name from its identification information
[MinOSVersion(OsWin8)]
function PkgxDeriveFamilyNameFromId(
out FamilyName: String;
const PackageId: TPkgxPackageId
): TNtxStatus;
// Convert a full package name to a family name
[MinOSVersion(OsWin8)]
function PkgxDeriveFamilyNameFromFullName(
out FamilyName: String;
const FullName: String
): TNtxStatus;
// Convert a package name and publisher from a family name
[MinOSVersion(OsWin8)]
function PkgxDeriveNameAndPublisherIdFromFamilyName(
const FamilyName: String;
out Name: String;
out PublisherId: String
): TNtxStatus;
// Parse package AppUserModelId
[MinOSVersion(OsWin81)]
function PkgxDeriveFamilyNameFromAppUserModelId(
const AppUserModelId: String;
out FamilyName: String;
out RelativeAppId: String
): TNtxStatus;
{ Querying by name }
// Query identification information of a package
[MinOSVersion(OsWin8)]
function PkgxQueryIdByFullName(
out PackageId: TPkgxPackageId;
const FullName: String;
Flags: TPackageInformationFlags = PACKAGE_INFORMATION_FULL
): TNtxStatus;
// Determine package origin
[MinOSVersion(OsWin81)]
function PkgxQueryOriginByFullName(
out Origin: TPackageOrigin;
const FullName: String
): TNtxStatus;
// Check is a package is a MSIX package
[MinOSVersion(OsWin1021H1)]
function PkgxQueryIsMsixByFullName(
out IsMSIXPackage: LongBool;
const FullName: String
): TNtxStatus;
// Query install time of a package
[MinOSVersion(OsWin81)]
function PkgxQueryInstallTimeByFullName(
out InstallTime: TLargeInteger;
const FullName: String
): TNtxStatus;
// Query a package SID
[MinOSVersion(OsWin10TH1)]
function PkgxQuerySidByPackageFamily(
out Sid: ISid;
const FamilyName: String
): TNtxStatus;
// Query maximum tested OS version for a package
[MinOSVersion(OsWin81)]
function PkgxQueryOSMaxVersionTestedByFullName(
out OSMaxVersionTested: TPackageVersion;
const FullName: String
): TNtxStatus;
// Query if a package is in development mode
[MinOSVersion(OsWin81)]
function PkgxQueryDevelopmentModeByFullName(
out DevelopmentMode: LongBool;
const FullName: String
): TNtxStatus;
// Query package SID
[MinOSVersion(OsWin81)]
function PkgxQuerySidByFullName(
out Sid: ISid;
const FullName: String
): TNtxStatus;
// Query package capabilities
[MinOSVersion(OsWin81)]
function PkgxQueryCapabilitiesByFullName(
const FullName: String;
out IsFullTrust: LongBool;
out Capabilities: TArray<TGroup>
): TNtxStatus;
{ Enumerating by name }
// Retrieve the list of packages in a family
[MinOSVersion(OsWin8)]
function PkgxEnumeratePackagesInFamilyByName(
out FullNames: TArray<String>;
const FamilyName: String
): TNtxStatus;
// Retrieve the list of packages in a family according to a filter
[MinOSVersion(OsWin81)]
function PkgxEnumeratePackagesInFamilyByNameEx(
out Packages: TArray<TPkgxPackageNameAndProperties>;
const FamilyName: String;
Filter: TPackageFilters = MAX_UINT
): TNtxStatus;
{ Info reference open }
// Open information about a package
[MinOSVersion(OsWin8)]
function PkgxOpenPackageInfo(
out InfoReference: IPackageInfoReference;
const FullName: String
): TNtxStatus;
// Open information about a package of another user
[MinOSVersion(OsWin10TH1)]
function PkgxOpenPackageInfoForUser(
out InfoReference: IPackageInfoReference;
const FullName: String;
[opt] const UserSid: ISid
): TNtxStatus;
{ Package contexts (internal use) }
// Get package context (internal use)
[MinOSVersion(OsWin81)]
function PkgxLocatePackageContext(
out Context: PPackageContextReference;
const InfoReference: IPackageInfoReference;
Index: Cardinal
): TNtxStatus;
// Get package application context (internal use)
[MinOSVersion(OsWin81)]
function PkgxLocatePackageApplicationContext(
out Context: PPackageApplicationContextReference;
const InfoReference: IPackageInfoReference;
Index: Cardinal
): TNtxStatus;
// Get package resources context (internal use)
[MinOSVersion(OsWin81)]
function PkgxLocatePackageResourcesContext(
out Context: PPackageResourcesContextReference;
const InfoReference: IPackageInfoReference;
Index: Cardinal
): TNtxStatus;
// Get package application resources context (internal use)
[MinOSVersion(OsWin81)]
function PkgxLocatePackageApplicationResourcesContext(
out Context: PPackageResourcesContextReference;
const InfoReference: IPackageInfoReference;
Index: Cardinal
): TNtxStatus;
// Get package security context (internal use)
[MinOSVersion(OsWin81)]
function PkgxLocatePackageSecurityContext(
out Context: PPackageSecurityContextReference;
const InfoReference: IPackageInfoReference
): TNtxStatus;
// Get package target platform context (internal use)
[MinOSVersion(OsWin10TH1)]
function PkgxLocatePackageTargetPlatformContext(
out Context: PTargetPlatformContextReference;
const InfoReference: IPackageInfoReference
): TNtxStatus;
// Get package globalization context (internal use)
[MinOSVersion(OsWin1020H1)]
function PkgxLocatePackageGlobalizationContext(
out Context: PPackageGlobalizationContextReference;
const InfoReference: IPackageInfoReference;
Index: Cardinal
): TNtxStatus;
{ Querying by info reference }
// Query information about a package
[MinOSVersion(OsWin8)]
function PkgxQueryPackageInfo(
out Info: TArray<TPkgxPackageInfo>;
const InfoReference: IPackageInfoReference;
Flags: TPackageFilters = MAX_UINT
): TNtxStatus;
// Query information about a package using a specific path type
[MinOSVersion(OsWin1019H1)]
function PkgxQueryPackageInfo2(
out Info: TArray<TPkgxPackageInfo>;
const InfoReference: IPackageInfoReference;
PathType: TPackagePathType;
Flags: TPackageFilters = MAX_UINT
): TNtxStatus;
// Query a string property of a package
[MinOSVersion(OsWin81)]
function PkgxQueryStringPropertyPackage(
out Value: String;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageProperty;
DependencyIndex: Cardinal = 0
): TNtxStatus;
// Query max tested OS version for a package
[MinOSVersion(OsWin81)]
function PkgxQueryOSMaxVersionTestedPackage(
out Version: TPackageVersion;
const InfoReference: IPackageInfoReference;
DependencyIndex: Cardinal = 0
): TNtxStatus;
// Query a string property of a package application
[MinOSVersion(OsWin81)]
function PkgxQueryStringPropertyApplicationPackage(
out Value: String;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageApplicationProperty;
ApplicationIndex: Cardinal = 0
): TNtxStatus;
// Query a variable-size security property of a package
[MinOSVersion(OsWin81)]
function PkgxQuerySecurityPropertyPackage(
out Buffer: IMemory;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageSecurityProperty
): TNtxStatus;
type
PkgxPackage = class abstract
// Query fixed-size package property
[MinOSVersion(OsWin81)]
class function QueryProperty<T>(
out Buffer: T;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageProperty;
DependencyIndex: Cardinal = 0
): TNtxStatus; static;
// Query fixed-size application package property
[MinOSVersion(OsWin81)]
class function QueryApplicationProperty<T>(
out Buffer: T;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageApplicationProperty;
ApplicationIndex: Cardinal = 0
): TNtxStatus; static;
// Query fixed-size security property
[MinOSVersion(OsWin81)]
class function QuerySecurityProperty<T>(
out Buffer: T;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageSecurityProperty
): TNtxStatus; static;
// Query fixed-size target platform property
[MinOSVersion(OsWin81)]
class function QueryTargetPlatformProperty<T>(
out Buffer: T;
const InfoReference: IPackageInfoReference;
PropertyId: TTargetPlatformProperty
): TNtxStatus; static;
// Query fixed-size globalization property
[MinOSVersion(OsWin1020H1)]
class function QueryGlobalizationProperty<T>(
out Buffer: T;
const InfoReference: IPackageInfoReference;
PropertyId: TPackageGlobalizationProperty;
DependencyIndex: Cardinal = 0
): TNtxStatus; static;
end;
// Enumerate application IDs in a package
[MinOSVersion(OsWin81)]
function PkgxEnumerateAppUserModelIds(
out AppUserModelIds: TArray<String>;
const InfoReference: IPackageInfoReference
): TNtxStatus;
{ Verification }
// Check if a string represents a valid package full name
[MinOSVersion(OsWin10TH1)]
function PkgxIsValidFullName(
const PackageFullName: String
): Boolean;
// Check if a string represents a valid package family name
[MinOSVersion(OsWin10TH1)]
function PkgxIsValidFamilyName(
const PackageFamilyName: String
): Boolean;
// Check if a string represents a valid package application user-mode ID
[MinOSVersion(OsWin10TH1)]
function PkgxIsValidAppUserModelId(
const AppUserModelId: String
): Boolean;
{ PRI Resources }
// Resolve a "@{PackageFullName?ms-resource://ResourceName}" string
[MinOSVersion(OsWin8)]
function PkgxExpandResourceString(
const ResourceDefinition: String;
out ResourceValue: String
): TNtxStatus;
// Resolve a "@{PackageFullName?ms-resource://ResourceName}" string in place
[MinOSVersion(OsWin8)]
function PkgxExpandResourceStringVar(
var Resource: String
): TNtxStatus;
implementation
uses
Ntapi.WinError, Ntapi.ntseapi, NtUtils.Ldr, NtUtils.SysUtils,
NtUtils.Security.Sid, DelphiUtils.AutoObjects;
{$BOOLEVAL OFF}
{$IFOPT R+}{$DEFINE R+}{$ENDIF}
{$IFOPT Q+}{$DEFINE Q+}{$ENDIF}
{ Helper functions }
type
TAutoPackageInfoReference = class(TCustomAutoPointer, IPackageInfoReference)
procedure Release; override;
end;
procedure TAutoPackageInfoReference.Release;
begin
if Assigned(FData) and LdrxCheckDelayedImport(
delayed_ClosePackageInfo).IsSuccess then
ClosePackageInfo(FData);
FData := nil;
inherited;
end;
function PkgxpCapturePackageId(
[in] Buffer: PPackageId
): TPkgxPackageId;
begin
Result.ProcessorArchitecture := Buffer.ProcessorArchitecture;
Result.Version := Buffer.Version;
Result.Name := String(Buffer.Name);
Result.Publisher := String(Buffer.Publisher);
Result.ResourceID := String(Buffer.ResourceID);
Result.PublisherID := String(Buffer.PublisherID);
end;
function PkgxpConvertPackageId(
const PackageId: TPkgxPackageId
): TPackageId;
begin
Result.Reserved := 0;
Result.ProcessorArchitecture := PackageId.ProcessorArchitecture;
Result.Version := PackageId.Version;
Result.Name := PWideChar(PackageId.Name);
Result.Publisher := PWideChar(PackageId.Publisher);
Result.ResourceID := PWideChar(PackageId.ResourceID);
Result.PublisherID := PWideChar(PackageId.PublisherID);
end;
function PkgxpCapturePackageInfo(
const Buffer: TPackageInfo
): TPkgxPackageInfo;
begin
Result.Properties := Buffer.Flags;
Result.Path := String(Buffer.Path);
Result.PackageFullName := String(Buffer.PackageFullName);
Result.PackageFamilyName := String(Buffer.PackageFamilyName);
Result.ID := PkgxpCapturePackageId(@Buffer.PackageId);
end;
{ Deriving/conversion }
function PkgxDeriveFullNameFromId;
var
Id: TPackageId;
BufferLength: Cardinal;
Buffer: IMemory<PWideChar>;
begin
Result := LdrxCheckDelayedImport(delayed_PackageFullNameFromId);
if not Result.IsSuccess then
Exit;
BufferLength := 0;
Id := PkgxpConvertPackageId(PackageId);
repeat
IMemory(Buffer) := Auto.AllocateDynamic(BufferLength * SizeOf(WideChar));
Result.Location := 'PackageFullNameFromId';
Result.Win32ErrorOrSuccess := PackageFullNameFromId(Id, BufferLength,
Buffer.Data);
until not NtxExpandBufferEx(Result, IMemory(Buffer), BufferLength *
SizeOf(WideChar), nil);
if Result.IsSuccess then
FullName := RtlxCaptureString(Buffer.Data, BufferLength);
end;
function PkgxDeriveFamilyNameFromId;
var
Id: TPackageId;
BufferLength: Cardinal;
Buffer: IMemory<PWideChar>;
begin
Result := LdrxCheckDelayedImport(delayed_PackageFamilyNameFromId);
if not Result.IsSuccess then
Exit;
BufferLength := 0;
Id := PkgxpConvertPackageId(PackageId);
repeat
IMemory(Buffer) := Auto.AllocateDynamic(BufferLength * SizeOf(WideChar));
Result.Location := 'PackageFamilyNameFromId';
Result.Win32ErrorOrSuccess := PackageFamilyNameFromId(Id, BufferLength,
Buffer.Data);
until not NtxExpandBufferEx(Result, IMemory(Buffer), BufferLength *
SizeOf(WideChar), nil);
if Result.IsSuccess then
FamilyName := RtlxCaptureString(Buffer.Data, BufferLength);
end;
function PkgxDeriveFamilyNameFromFullName;
var
BufferLength: Cardinal;
Buffer: IMemory<PWideChar>;
begin
Result := LdrxCheckDelayedImport(delayed_PackageFamilyNameFromFullName);
if not Result.IsSuccess then
Exit;
BufferLength := 0;
repeat
IMemory(Buffer) := Auto.AllocateDynamic(BufferLength * SizeOf(WideChar));
Result.Location := 'PackageFamilyNameFromFullName';
Result.Win32ErrorOrSuccess := PackageFamilyNameFromFullName(
PWideChar(FullName), BufferLength, Buffer.Data);
until not NtxExpandBufferEx(Result, IMemory(Buffer), BufferLength *
SizeOf(WideChar), nil);
if Result.IsSuccess then
FamilyName := RtlxCaptureString(Buffer.Data, BufferLength);
end;
function PkgxDeriveNameAndPublisherIdFromFamilyName;
var
NameLength, PublisherIdLength: Cardinal;
NameBuffer, PublisherBuffer: IMemory<PWideChar>;
begin
Result := LdrxCheckDelayedImport(
delayed_PackageNameAndPublisherIdFromFamilyName);
if not Result.IsSuccess then
Exit;
NameLength := 0;
PublisherIdLength := 0;
repeat
IMemory(NameBuffer) := Auto.AllocateDynamic(NameLength * SizeOf(WideChar));
IMemory(PublisherBuffer) := Auto.AllocateDynamic(PublisherIdLength *
SizeOf(WideChar));
Result.Location := 'PackageNameAndPublisherIdFromFamilyName';
Result.Win32ErrorOrSuccess := PackageNameAndPublisherIdFromFamilyName(
PWideChar(FamilyName), NameLength, NameBuffer.Data, PublisherIdLength,
PublisherBuffer.Data);
until not NtxExpandBufferEx(Result, IMemory(NameBuffer), NameLength *
SizeOf(WideChar), nil) or not NtxExpandBufferEx(Result,
IMemory(PublisherBuffer), PublisherIdLength * SizeOf(WideChar), nil);
if Result.IsSuccess then
begin
Name := RtlxCaptureString(NameBuffer.Data, NameLength);
PublisherId := RtlxCaptureString(PublisherBuffer.Data, PublisherIdLength);
end;
end;
function PkgxDeriveFamilyNameFromAppUserModelId;
var
FamilyNameLength, RelativeIdLength: Cardinal;
FamilyNameBuffer, RelativeIdBuffer: IMemory<PWideChar>;
begin
Result := LdrxCheckDelayedImport(delayed_ParseApplicationUserModelId);
if not Result.IsSuccess then
Exit;
FamilyNameLength := 0;
RelativeIdLength := 0;
repeat
IMemory(FamilyNameBuffer) := Auto.AllocateDynamic(FamilyNameLength *
SizeOf(WideChar));
IMemory(RelativeIdBuffer) := Auto.AllocateDynamic(RelativeIdLength *
SizeOf(WideChar));
Result.Location := 'ParseApplicationUserModelId';
Result.Win32ErrorOrSuccess := ParseApplicationUserModelId(
PWideChar(AppUserModelId), FamilyNameLength, FamilyNameBuffer.Data,
RelativeIdLength, RelativeIdBuffer.Data);
until not NtxExpandBufferEx(Result, IMemory(FamilyNameBuffer),
FamilyNameLength * SizeOf(WideChar), nil) or not NtxExpandBufferEx(Result,
IMemory(RelativeIdBuffer), RelativeIdLength * SizeOf(WideChar), nil);
if Result.IsSuccess then
begin
FamilyName := RtlxCaptureString(FamilyNameBuffer.Data, FamilyNameLength);
RelativeAppId := RtlxCaptureString(RelativeIdBuffer.Data, RelativeIdLength);
end;
end;
{ Querying by name }
function PkgxQueryIdByFullName;
var
BufferSize: Cardinal;
Buffer: IMemory<PPackageId>;
begin
Result := LdrxCheckDelayedImport(delayed_PackageIdFromFullName);
if not Result.IsSuccess then
Exit;
BufferSize := SizeOf(TPackageId);
repeat
IMemory(Buffer) := Auto.AllocateDynamic(BufferSize);
Result.Location := 'PackageIdFromFullName';
Result.Win32ErrorOrSuccess := PackageIdFromFullName(PWideChar(FullName),
Flags, BufferSize, Buffer.Data);
until not NtxExpandBufferEx(Result, IMemory(Buffer), BufferSize, nil);
if Result.IsSuccess then
PackageId := PkgxpCapturePackageId(Buffer.Data);
end;
function PkgxQueryOriginByFullName;
begin
Result := LdrxCheckDelayedImport(delayed_GetStagedPackageOrigin);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetStagedPackageOrigin';
Result.Win32ErrorOrSuccess := GetStagedPackageOrigin(PWideChar(FullName),
Origin);
end;
function PkgxQueryIsMsixByFullName;
begin
Result := LdrxCheckDelayedImport(delayed_CheckIsMSIXPackage);
if not Result.IsSuccess then
Exit;
Result.Location := 'CheckIsMSIXPackage';
Result.HResult := CheckIsMSIXPackage(PWideChar(FullName), IsMSIXPackage);
end;
function PkgxQueryInstallTimeByFullName;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageInstallTime);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageInstallTime';
Result.HResult := GetPackageInstallTime(PWideChar(FullName), InstallTime);
end;
function PkgxQuerySidByPackageFamily;
var
Buffer: PSid;
BufferDeallocator: IAutoReleasable;
begin
Result := LdrxCheckDelayedImport(delayed_PackageSidFromFamilyName);
if not Result.IsSuccess then
Exit;
Result.Location := 'PackageSidFromFamilyName';
Result.Win32ErrorOrSuccess := PackageSidFromFamilyName(PWideChar(FamilyName),
Buffer);
if not Result.IsSuccess then
Exit;
BufferDeallocator := RtlxDelayFreeSid(Buffer);
Result := RtlxCopySid(Buffer, Sid);
end;
function PkgxQueryOSMaxVersionTestedByFullName;
begin
Result := LdrxCheckDelayedImport(delayed_AppXGetOSMaxVersionTested);
if not Result.IsSuccess then
Exit;
Result.Location := 'AppXGetOSMaxVersionTested';
Result.HResult := AppXGetOSMaxVersionTested(PWideChar(FullName),
OSMaxVersionTested);
end;
function PkgxQueryDevelopmentModeByFullName;
begin
Result := LdrxCheckDelayedImport(delayed_AppXGetDevelopmentMode);
if not Result.IsSuccess then
Exit;
Result.Location := 'AppXGetDevelopmentMode';
Result.HResult := AppXGetDevelopmentMode(PWideChar(FullName),
DevelopmentMode);
end;
function PkgxDelayAppxFree(
[in] Buffer: Pointer
): IAutoReleasable;
begin
Result := Auto.Delay(
procedure
begin
if LdrxCheckDelayedImport(delayed_AppXFreeMemory).IsSuccess then
AppXFreeMemory(Buffer);
end
);
end;
function PkgxQuerySidByFullName;
var
Buffer: PSid;
BufferDeallocator: IAutoReleasable;
begin
Result := LdrxCheckDelayedImport(delayed_AppXGetPackageSid);
if not Result.IsSuccess then
Exit;
Result.Location := 'AppXGetPackageSid';
Result.HResult := AppXGetPackageSid(PWideChar(FullName), Buffer);
if not Result.IsSuccess then
Exit;
BufferDeallocator := PkgxDelayAppxFree(Buffer);
Result := RtlxCopySid(Buffer, Sid);
end;
function PkgxQueryCapabilitiesByFullName;
var
Buffer: PSidAndAttributesArray;
BufferDeallocator: IAutoReleasable;
Count: Cardinal;
i: Integer;
begin
Result := LdrxCheckDelayedImport(delayed_AppXGetPackageCapabilities);
if not Result.IsSuccess then
Exit;
Result.Location := 'AppXGetPackageCapabilities';
Result.HResult := AppXGetPackageCapabilities(PWideChar(FullName),
IsFullTrust, Buffer, Count);
if not Result.IsSuccess then
Exit;
BufferDeallocator := PkgxDelayAppxFree(Buffer);
SetLength(Capabilities, Count);
for i := 0 to High(Capabilities) do
begin
Capabilities[i].Attributes := Buffer[i].Attributes;
Result := RtlxCopySid(Buffer[i].SID, Capabilities[i].Sid);
if not Result.IsSuccess then
Exit;
end;
end;
{ Enumerating by name }
function PkgxEnumeratePackagesInFamilyByName;
var
Count, BufferLength: Cardinal;
Names: IMemory<PPackageFullNames>;
Buffer: IMemory<PWideChar>;
i: Integer;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackagesByPackageFamily);
if not Result.IsSuccess then
Exit;
Count := 0;
BufferLength := 0;
repeat
IMemory(Names) := Auto.AllocateDynamic(Count * SizeOf(PWideChar));
IMemory(Buffer) := Auto.AllocateDynamic(BufferLength * SizeOf(WideChar));
Result.Location := 'GetPackagesByPackageFamily';
Result.Win32ErrorOrSuccess := GetPackagesByPackageFamily(
PWideChar(FamilyName), Count, Names.Data, BufferLength, Buffer.Data);
until not NtxExpandBufferEx(Result, IMemory(Names), Count * SizeOf(PWideChar),
nil) or not NtxExpandBufferEx(Result, IMemory(Buffer), BufferLength *
SizeOf(WideChar), nil);
if not Result.IsSuccess then
Exit;
SetLength(FullNames, Count);
for i := 0 to High(FullNames) do
FullNames[i] := String(Names.Data{$R-}[i]{$IFDEF R+}{$R+}{$ENDIF});
end;
function PkgxEnumeratePackagesInFamilyByNameEx;
var
Count, BufferLength: Cardinal;
Names: IMemory<PPackageFullNames>;
Buffer: IMemory<PWideChar>;
Properties: IMemory<PPackagePropertiesArray>;
i: Integer;
begin
Result := LdrxCheckDelayedImport(delayed_FindPackagesByPackageFamily);
if not Result.IsSuccess then
Exit;
Count := 0;
BufferLength := 0;
repeat
IMemory(Names) := Auto.AllocateDynamic(Count * SizeOf(PWideChar));
IMemory(Properties) := Auto.AllocateDynamic(Count *
SizeOf(TPackageProperties));
IMemory(Buffer) := Auto.AllocateDynamic(BufferLength *
SizeOf(WideChar));
Result.Location := 'FindPackagesByPackageFamily';
Result.Win32ErrorOrSuccess := FindPackagesByPackageFamily(
PWideChar(FamilyName), Filter, Count, Names.Data, BufferLength,
Buffer.Data, Properties.Data);
until not NtxExpandBufferEx(Result, IMemory(Names), Count *
SizeOf(PWideChar), nil) or not NtxExpandBufferEx(Result,
IMemory(Buffer), BufferLength * SizeOf(WideChar), nil);
if not Result.IsSuccess then
Exit;
SetLength(Packages, Count);
for i := 0 to High(Packages) do
begin
Packages[i].FullName := String(Names.Data{$R-}[i]{$IFDEF R+}{$R+}{$ENDIF});
Packages[i].Properties := Properties.Data{$R-}[i]{$IFDEF R+}{$R+}{$ENDIF};
end;
end;
{ Info reference open }
function PkgxOpenPackageInfo;
var
PackageInfoReference: TPackageInfoReference;
begin
Result := LdrxCheckDelayedImport(delayed_OpenPackageInfoByFullName);
if not Result.IsSuccess then
Exit;
Result.Location := 'OpenPackageInfoByFullName';
Result.Win32ErrorOrSuccess := OpenPackageInfoByFullName(PWideChar(FullName),
0, PackageInfoReference);
if Result.IsSuccess then
InfoReference := TAutoPackageInfoReference.Capture(PackageInfoReference);
end;
function PkgxOpenPackageInfoForUser;
var
PackageInfoReference: TPackageInfoReference;
begin
Result := LdrxCheckDelayedImport(delayed_OpenPackageInfoByFullNameForUser);
if not Result.IsSuccess then
Exit;
Result.Location := 'OpenPackageInfoByFullNameForUser';
Result.Win32ErrorOrSuccess := OpenPackageInfoByFullNameForUser(
Auto.RefOrNil<PSid>(UserSid), PWideChar(FullName), 0,
PackageInfoReference);
if Result.IsSuccess then
InfoReference := TAutoPackageInfoReference.Capture(PackageInfoReference);
end;
{ Contexts }
function PkgxLocatePackageContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageContext';
Result.Win32ErrorOrSuccess := GetPackageContext(InfoReference.Data, Index, 0,
Context);
end;
function PkgxLocatePackageApplicationContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageApplicationContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageApplicationContext';
Result.Win32ErrorOrSuccess := GetPackageApplicationContext(InfoReference.Data,
Index, 0, Context);
end;
function PkgxLocatePackageResourcesContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageResourcesContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageResourcesContext';
Result.Win32ErrorOrSuccess := GetPackageResourcesContext(InfoReference.Data,
Index, 0, Context);
end;
function PkgxLocatePackageApplicationResourcesContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageApplicationResourcesContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageApplicationResourcesContext';
Result.Win32ErrorOrSuccess := GetPackageApplicationResourcesContext(
InfoReference.Data, Index, 0, Context);
end;
function PkgxLocatePackageSecurityContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageSecurityContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageSecurityContext';
Result.Win32ErrorOrSuccess := GetPackageSecurityContext(
InfoReference.Data, 0, Context);
end;
function PkgxLocatePackageTargetPlatformContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetTargetPlatformContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetTargetPlatformContext';
Result.Win32ErrorOrSuccess := GetTargetPlatformContext(
InfoReference.Data, 0, Context);
end;
function PkgxLocatePackageGlobalizationContext;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageGlobalizationContext);
if not Result.IsSuccess then
Exit;
Result.Location := 'GetPackageGlobalizationContext';
Result.Win32ErrorOrSuccess := GetPackageGlobalizationContext(
InfoReference.Data, Index, 0, Context);
end;
{ Querying by info reference }
function PkgxQueryPackageInfo;
var
BufferSize: Cardinal;
Buffer: IMemory<PPackageInfoArray>;
Count: Cardinal;
i: Integer;
begin
Result := LdrxCheckDelayedImport(delayed_GetPackageInfo);
if not Result.IsSuccess then
Exit;
BufferSize := 0;
repeat
IMemory(Buffer) := Auto.AllocateDynamic(BufferSize);
Result.Location := 'GetPackageInfo';
Result.Win32ErrorOrSuccess := GetPackageInfo(InfoReference.Data, Flags,
BufferSize, Buffer.Data, @Count);
until not NtxExpandBufferEx(Result, IMemory(Buffer), BufferSize, nil);