-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdtyp.go
7424 lines (7140 loc) · 311 KB
/
dtyp.go
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
// The dtyp package implements the DTYP client protocol.
//
// # Introduction
//
// This document provides a collection of commonly used data types, which are categorized
// into two basic types: common base types and common data types. The common base types
// are those types that Microsoft compilers natively support. The common data types
// are data types that are frequently used by many protocols. These data types are user-defined
// types.
//
// # Overview
//
// Two types of data structures are specified in this document: data structures that
// are specified in terms of the wire format and data structures that are RPC-marshaled
// as specified in [MS-RPCE]. The latter are specified by using the Interface Definition
// Language (IDL) that is defined in [MS-RPCE] section 2.2.4.
//
// For some types of data, both formats are shown. For example, both formats are shown
// if some protocols use the raw wire format but other protocols use the RPC-marshaled
// format. Any protocol that uses a data structure name in its IDL necessarily implies
// the use of the IDL version of the data structure. Any other use implies the use of
// the wire format version unless otherwise specified by the protocol that uses the
// data structure.
package dtyp
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Encode
_ = strings.TrimPrefix
_ = ndr.ZeroString
_ = (*uuid.UUID)(nil)
_ = (*dcerpc.SyntaxID)(nil)
_ = (*errors.Error)(nil)
)
var (
// import guard
GoPackage = "dtyp"
)
// AccessMaskGenericRead represents the ACCESS_MASK_GENERIC_READ RPC constant
const AccessMaskGenericRead = 0x80000000
// AccessMaskGenericWrite represents the ACCESS_MASK_GENERIC_WRITE RPC constant
const AccessMaskGenericWrite = 0x40000000
// AccessMaskGenericExecute represents the ACCESS_MASK_GENERIC_EXECUTE RPC constant
const AccessMaskGenericExecute = 0x20000000
// AccessMaskGenericAll represents the ACCESS_MASK_GENERIC_ALL RPC constant
const AccessMaskGenericAll = 0x10000000
// AccessMaskMaximumAllowed represents the ACCESS_MASK_MAXIMUM_ALLOWED RPC constant
const AccessMaskMaximumAllowed = 0x02000000
// AccessMaskAccessSystemSecurity represents the ACCESS_MASK_ACCESS_SYSTEM_SECURITY RPC constant
const AccessMaskAccessSystemSecurity = 0x01000000
// AccessMaskSynchronize represents the ACCESS_MASK_SYNCHRONIZE RPC constant
const AccessMaskSynchronize = 0x00100000
// AccessMaskWriteOwner represents the ACCESS_MASK_WRITE_OWNER RPC constant
const AccessMaskWriteOwner = 0x00080000
// AccessMaskWriteDACL represents the ACCESS_MASK_WRITE_DACL RPC constant
const AccessMaskWriteDACL = 0x00040000
// AccessMaskReadControl represents the ACCESS_MASK_READ_CONTROL RPC constant
const AccessMaskReadControl = 0x00020000
// AccessMaskDelete represents the ACCESS_MASK_DELETE RPC constant
const AccessMaskDelete = 0x00010000
// AccessMaskDSControlAccess represents the ACCESS_MASK_DS_CONTROL_ACCESS RPC constant
const AccessMaskDSControlAccess = 0x00000100
// AccessMaskDSCreateChild represents the ACCESS_MASK_DS_CREATE_CHILD RPC constant
const AccessMaskDSCreateChild = 0x00000001
// AccessMaskDSDeleteChild represents the ACCESS_MASK_DS_DELETE_CHILD RPC constant
const AccessMaskDSDeleteChild = 0x00000002
// AccessMaskDSReadProperty represents the ACCESS_MASK_DS_READ_PROP RPC constant
const AccessMaskDSReadProperty = 0x00000010
// AccessMaskDSWriteProperty represents the ACCESS_MASK_DS_WRITE_PROP RPC constant
const AccessMaskDSWriteProperty = 0x00000020
// AccessMaskDSSelf represents the ACCESS_MASK_DS_SELF RPC constant
const AccessMaskDSSelf = 0x00000008
// ACEObjectTypePresent represents the ACE_OBJECT_TYPE_PRESENT RPC constant
const ACEObjectTypePresent = 0x00000001
// ACEInheritedObjectTypePresent represents the ACE_INHERITED_OBJECT_TYPE_PRESENT RPC constant
const ACEInheritedObjectTypePresent = 0x00000002
// ACEFlagContainerInheritACE represents the ACE_FLAG_CONTAINER_INHERIT_ACE RPC constant
var ACEFlagContainerInheritACE = 2
// ACEFlagFailedAccessACEFlag represents the ACE_FLAG_FAILED_ACCESS_ACE_FLAG RPC constant
var ACEFlagFailedAccessACEFlag = 128
// ACEFlagInheritOnlyACE represents the ACE_FLAG_INHERIT_ONLY_ACE RPC constant
var ACEFlagInheritOnlyACE = 8
// ACEFlagInheritedACE represents the ACE_FLAG_INHERITED_ACE RPC constant
var ACEFlagInheritedACE = 16
// ACEFlagNoPropagateInheritACE represents the ACE_FLAG_NO_PROPAGATE_INHERIT_ACE RPC constant
var ACEFlagNoPropagateInheritACE = 4
// ACEFlagObjectInheritACE represents the ACE_FLAG_OBJECT_INHERIT_ACE RPC constant
var ACEFlagObjectInheritACE = 1
// ACEFlagSuccessfulAccessACEFlag represents the ACE_FLAG_SUCCESSFUL_ACCESS_ACE_FLAG RPC constant
var ACEFlagSuccessfulAccessACEFlag = 64
// SystemMandatoryLabelNoWriteUp represents the SYSTEM_MANDATORY_LABEL_NO_WRITE_UP RPC constant
const SystemMandatoryLabelNoWriteUp = 0x00000001
// SystemMandatoryLabelNoReadUp represents the SYSTEM_MANDATORY_LABEL_NO_READ_UP RPC constant
const SystemMandatoryLabelNoReadUp = 0x00000002
// SystemMandatoryLabelNoExecuteUp represents the SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP RPC constant
const SystemMandatoryLabelNoExecuteUp = 0x00000004
// SecurityNullSIDAuthority represents the SECURITY_NULL_SID_AUTHORITY RPC constant
const SecurityNullSIDAuthority = 0x00000000
// SecurityWorldSIDAuthority represents the SECURITY_WORLD_SID_AUTHORITY RPC constant
const SecurityWorldSIDAuthority = 0x00000001
// SecurityLocalSIDAuthority represents the SECURITY_LOCAL_SID_AUTHORITY RPC constant
const SecurityLocalSIDAuthority = 0x00000002
// SecurityCreatorSIDAuthority represents the SECURITY_CREATOR_SID_AUTHORITY RPC constant
const SecurityCreatorSIDAuthority = 0x00000003
// SecurityNTAuthority represents the SECURITY_NT_AUTHORITY RPC constant
const SecurityNTAuthority = 0x00000005
// SecurityNullRID represents the SECURITY_NULL_RID RPC constant
const SecurityNullRID = 0x00000000
// SecurityWorldRID represents the SECURITY_WORLD_RID RPC constant
const SecurityWorldRID = 0x00000000
// SecurityLocalRID represents the SECURITY_LOCAL_RID RPC constant
const SecurityLocalRID = 0x00000000
// SecurityLocalLogonRID represents the SECURITY_LOCAL_LOGON_RID RPC constant
const SecurityLocalLogonRID = 0x00000001
// SecurityCreatorOwnerRID represents the SECURITY_CREATOR_OWNER_RID RPC constant
const SecurityCreatorOwnerRID = 0x00000000
// SecurityCreatorGroupRID represents the SECURITY_CREATOR_GROUP_RID RPC constant
const SecurityCreatorGroupRID = 0x00000001
// SecurityMandatoryUntrustedRID represents the SECURITY_MANDATORY_UNTRUSTED_RID RPC constant
const SecurityMandatoryUntrustedRID = 0x00000000
// SecurityMandatoryLowRID represents the SECURITY_MANDATORY_LOW_RID RPC constant
const SecurityMandatoryLowRID = 0x00001000
// SecurityMandatoryMediumRID represents the SECURITY_MANDATORY_MEDIUM_RID RPC constant
const SecurityMandatoryMediumRID = 0x00002000
// SecurityMandatoryMediumPlusRID represents the SECURITY_MANDATORY_MEDIUM_PLUS_RID RPC constant
const SecurityMandatoryMediumPlusRID = 0x00002100
// SecurityMandatoryHighRID represents the SECURITY_MANDATORY_HIGH_RID RPC constant
const SecurityMandatoryHighRID = 0x00003000
// SecurityMandatorySystemRID represents the SECURITY_MANDATORY_SYSTEM_RID RPC constant
const SecurityMandatorySystemRID = 0x00004000
// SecurityMandatoryProtectedProcessRID represents the SECURITY_MANDATORY_PROTECTED_PROCESS_RID RPC constant
const SecurityMandatoryProtectedProcessRID = 0x00005000
// DomainGroupRIDEnterpriseReadonlyDomainControllers represents the DOMAIN_GROUP_RID_ENTERPRISE_READONLY_DOMAIN_CONTROLLERS RPC constant
const DomainGroupRIDEnterpriseReadonlyDomainControllers = 0x000001F2
// DomainUserRIDAdmin represents the DOMAIN_USER_RID_ADMIN RPC constant
const DomainUserRIDAdmin = 0x000001F4
// DomainUserRIDGuest represents the DOMAIN_USER_RID_GUEST RPC constant
const DomainUserRIDGuest = 0x000001F5
// DomainUserRIDKRBTGT represents the DOMAIN_USER_RID_KRBTGT RPC constant
const DomainUserRIDKRBTGT = 0x000001F6
// DomainUserRIDDefaultAccount represents the DOMAIN_USER_RID_DEFAULT_ACCOUNT RPC constant
const DomainUserRIDDefaultAccount = 0x000001F7
// DomainGroupRIDAdmins represents the DOMAIN_GROUP_RID_ADMINS RPC constant
const DomainGroupRIDAdmins = 0x00000200
// DomainGroupRIDUsers represents the DOMAIN_GROUP_RID_USERS RPC constant
const DomainGroupRIDUsers = 0x00000201
// DomainGroupRIDGuests represents the DOMAIN_GROUP_RID_GUESTS RPC constant
const DomainGroupRIDGuests = 0x00000202
// DomainGroupRIDComputers represents the DOMAIN_GROUP_RID_COMPUTERS RPC constant
const DomainGroupRIDComputers = 0x00000203
// DomainGroupRIDControllers represents the DOMAIN_GROUP_RID_CONTROLLERS RPC constant
const DomainGroupRIDControllers = 0x00000204
// DomainGroupRIDCertAdmins represents the DOMAIN_GROUP_RID_CERT_ADMINS RPC constant
const DomainGroupRIDCertAdmins = 0x00000205
// DomainGroupRIDSchemaAdmins represents the DOMAIN_GROUP_RID_SCHEMA_ADMINS RPC constant
const DomainGroupRIDSchemaAdmins = 0x00000206
// DomainGroupRIDEnterpriseAdmins represents the DOMAIN_GROUP_RID_ENTERPRISE_ADMINS RPC constant
const DomainGroupRIDEnterpriseAdmins = 0x00000207
// DomainGroupRIDPolicyAdmins represents the DOMAIN_GROUP_RID_POLICY_ADMINS RPC constant
const DomainGroupRIDPolicyAdmins = 0x00000208
// DomainGroupRIDReadonlyControllers represents the DOMAIN_GROUP_RID_READONLY_CONTROLLERS RPC constant
const DomainGroupRIDReadonlyControllers = 0x00000209
// DomainGroupRIDCloneableControllers represents the DOMAIN_GROUP_RID_CLONEABLE_CONTROLLERS RPC constant
const DomainGroupRIDCloneableControllers = 0x0000020A
// DomainGroupRIDCDCReserved represents the DOMAIN_GROUP_RID_CDC_RESERVED RPC constant
const DomainGroupRIDCDCReserved = 0x0000020C
// DomainGroupRIDProtectedUsers represents the DOMAIN_GROUP_RID_PROTECTED_USERS RPC constant
const DomainGroupRIDProtectedUsers = 0x0000020D
// DomainGroupRIDKeyAdmins represents the DOMAIN_GROUP_RID_KEY_ADMINS RPC constant
const DomainGroupRIDKeyAdmins = 0x0000020E
// DomainGroupRIDEnterpriseKeyAdmins represents the DOMAIN_GROUP_RID_ENTERPRISE_KEY_ADMINS RPC constant
const DomainGroupRIDEnterpriseKeyAdmins = 0x0000020F
// DomainAliasRIDAdmins represents the DOMAIN_ALIAS_RID_ADMINS RPC constant
const DomainAliasRIDAdmins = 0x00000220
// DomainAliasRIDUsers represents the DOMAIN_ALIAS_RID_USERS RPC constant
const DomainAliasRIDUsers = 0x00000221
// DomainAliasRIDGuests represents the DOMAIN_ALIAS_RID_GUESTS RPC constant
const DomainAliasRIDGuests = 0x00000222
// DomainAliasRIDPowerUsers represents the DOMAIN_ALIAS_RID_POWER_USERS RPC constant
const DomainAliasRIDPowerUsers = 0x00000223
// DomainAliasRIDAccountOperations represents the DOMAIN_ALIAS_RID_ACCOUNT_OPS RPC constant
const DomainAliasRIDAccountOperations = 0x00000224
// DomainAliasRIDSystemOperations represents the DOMAIN_ALIAS_RID_SYSTEM_OPS RPC constant
const DomainAliasRIDSystemOperations = 0x00000225
// DomainAliasRIDPrintOperations represents the DOMAIN_ALIAS_RID_PRINT_OPS RPC constant
const DomainAliasRIDPrintOperations = 0x00000226
// DomainAliasRIDBackupOperations represents the DOMAIN_ALIAS_RID_BACKUP_OPS RPC constant
const DomainAliasRIDBackupOperations = 0x00000227
// DomainAliasRIDReplicator represents the DOMAIN_ALIAS_RID_REPLICATOR RPC constant
const DomainAliasRIDReplicator = 0x00000228
// DomainAliasRIDRASServers represents the DOMAIN_ALIAS_RID_RAS_SERVERS RPC constant
const DomainAliasRIDRASServers = 0x00000229
// DomainAliasRIDPreW2KCompAccess represents the DOMAIN_ALIAS_RID_PRE_W2K_COMP_ACCESS RPC constant
const DomainAliasRIDPreW2KCompAccess = 0x0000022A
// DomainAliasRIDRemoteDesktopUsers represents the DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS RPC constant
const DomainAliasRIDRemoteDesktopUsers = 0x0000022B
// DomainAliasRIDNetworkConfigurationOperations represents the DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS RPC constant
const DomainAliasRIDNetworkConfigurationOperations = 0x0000022C
// DomainAliasRIDIncomingForestTrustBuilders represents the DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS RPC constant
const DomainAliasRIDIncomingForestTrustBuilders = 0x0000022D
// DomainAliasRIDMonitoringUsers represents the DOMAIN_ALIAS_RID_MONITORING_USERS RPC constant
const DomainAliasRIDMonitoringUsers = 0x0000022E
// DomainAliasRIDLoggingUsers represents the DOMAIN_ALIAS_RID_LOGGING_USERS RPC constant
const DomainAliasRIDLoggingUsers = 0x0000022F
// DomainAliasRIDAuthorizationAccess represents the DOMAIN_ALIAS_RID_AUTHORIZATION_ACCESS RPC constant
const DomainAliasRIDAuthorizationAccess = 0x00000230
// DomainAliasRIDTSLicenseServers represents the DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS RPC constant
const DomainAliasRIDTSLicenseServers = 0x00000231
// DomainAliasRIDDCOMUsers represents the DOMAIN_ALIAS_RID_DCOM_USERS RPC constant
const DomainAliasRIDDCOMUsers = 0x00000232
// DomainAliasRIDInternetUsers represents the DOMAIN_ALIAS_RID_INTERNET_USERS RPC constant
const DomainAliasRIDInternetUsers = 0x00000238
// DomainAliasRIDCryptoOperators represents the DOMAIN_ALIAS_RID_CRYPTO_OPERATORS RPC constant
const DomainAliasRIDCryptoOperators = 0x00000239
// DomainAliasRIDCacheablePrincipalsGroup represents the DOMAIN_ALIAS_RID_CACHEABLE_PRINCIPALS_GROUP RPC constant
const DomainAliasRIDCacheablePrincipalsGroup = 0x0000023B
// DomainAliasRIDNonCacheablePrincipalsGroup represents the DOMAIN_ALIAS_RID_NON_CACHEABLE_PRINCIPALS_GROUP RPC constant
const DomainAliasRIDNonCacheablePrincipalsGroup = 0x0000023C
// DomainAliasRIDEventLogReadersGroup represents the DOMAIN_ALIAS_RID_EVENT_LOG_READERS_GROUP RPC constant
const DomainAliasRIDEventLogReadersGroup = 0x0000023D
// DomainAliasRIDCertServiceDCOMAccessGroup represents the DOMAIN_ALIAS_RID_CERTSVC_DCOM_ACCESS_GROUP RPC constant
const DomainAliasRIDCertServiceDCOMAccessGroup = 0x0000023E
// DomainAliasRIDRDSRemoteAccessServers represents the DOMAIN_ALIAS_RID_RDS_REMOTE_ACCESS_SERVERS RPC constant
const DomainAliasRIDRDSRemoteAccessServers = 0x0000023F
// DomainAliasRIDRDSEndpointServers represents the DOMAIN_ALIAS_RID_RDS_ENDPOINT_SERVERS RPC constant
const DomainAliasRIDRDSEndpointServers = 0x00000240
// DomainAliasRIDRDSManagementServers represents the DOMAIN_ALIAS_RID_RDS_MANAGEMENT_SERVERS RPC constant
const DomainAliasRIDRDSManagementServers = 0x00000241
// DomainAliasRIDHyperVAdmins represents the DOMAIN_ALIAS_RID_HYPER_V_ADMINS RPC constant
const DomainAliasRIDHyperVAdmins = 0x00000242
// DomainAliasRIDAccessControlAssistanceOperations represents the DOMAIN_ALIAS_RID_ACCESS_CONTROL_ASSISTANCE_OPS RPC constant
const DomainAliasRIDAccessControlAssistanceOperations = 0x00000243
// DomainAliasRIDRemoteManagementUsers represents the DOMAIN_ALIAS_RID_REMOTE_MANAGEMENT_USERS RPC constant
const DomainAliasRIDRemoteManagementUsers = 0x00000244
// DomainAliasRIDDefaultAccount represents the DOMAIN_ALIAS_RID_DEFAULT_ACCOUNT RPC constant
const DomainAliasRIDDefaultAccount = 0x00000245
// DomainAliasRIDStorageReplicaAdmins represents the DOMAIN_ALIAS_RID_STORAGE_REPLICA_ADMINS RPC constant
const DomainAliasRIDStorageReplicaAdmins = 0x00000246
// DomainAliasRIDDeviceOwners represents the DOMAIN_ALIAS_RID_DEVICE_OWNERS RPC constant
const DomainAliasRIDDeviceOwners = 0x00000247
// RIDLowIntegrityLevel represents the RID_LOW_INTEGRITY_LEVEL RPC constant
const RIDLowIntegrityLevel = 0x00001000
// RIDMediumIntegrityLevel represents the RID_MEDIUM_INTEGRITY_LEVEL RPC constant
const RIDMediumIntegrityLevel = 0x00002000
// RIDHighIntegrityLevel represents the RID_HIGH_INTEGRITY_LEVEL RPC constant
const RIDHighIntegrityLevel = 0x00003000
// RIDSystemIntegrityLevel represents the RID_SYSTEM_INTEGRITY_LEVEL RPC constant
const RIDSystemIntegrityLevel = 0x00004000
// RIDProtectedProcessIntegrityLevel represents the RID_PROTECTED_PROCESS_INTEGRITY_LEVEL RPC constant
const RIDProtectedProcessIntegrityLevel = 0x00005000
// OwnerDefaulted represents the OWNER_DEFAULTED RPC constant
const OwnerDefaulted = 0x0001
// GroupDefaulted represents the GROUP_DEFAULTED RPC constant
const GroupDefaulted = 0x0002
// DACLPresent represents the DACL_PRESENT RPC constant
const DACLPresent = 0x0004
// DACLDefaulted represents the DACL_DEFAULTED RPC constant
const DACLDefaulted = 0x0008
// SACLPresent represents the SACL_PRESENT RPC constant
const SACLPresent = 0x0010
// SACLDefaulted represents the SACL_DEFAULTED RPC constant
const SACLDefaulted = 0x0020
// DACLTrusted represents the DACL_TRUSTED RPC constant
const DACLTrusted = 0x0040
// ServerSecurity represents the SERVER_SECURITY RPC constant
const ServerSecurity = 0x0080
// DACLComputedInheritanceRequired represents the DACL_COMPUTED_INHERITANCE_REQUIRED RPC constant
const DACLComputedInheritanceRequired = 0x0100
// SACLComputedInheritanceRequired represents the SACL_COMPUTED_INHERITANCE_REQUIRED RPC constant
const SACLComputedInheritanceRequired = 0x0200
// DACLAutoInherited represents the DACL_AUTO_INHERITED RPC constant
const DACLAutoInherited = 0x0400
// SACLAutoInherited represents the SACL_AUTO_INHERITED RPC constant
const SACLAutoInherited = 0x0800
// DACLProtected represents the DACL_PROTECTED RPC constant
const DACLProtected = 0x1000
// SACLProtected represents the SACL_PROTECTED RPC constant
const SACLProtected = 0x2000
// RMControlValid represents the RM_CONTROL_VALID RPC constant
const RMControlValid = 0x4000
// SelfRelative represents the SELF_RELATIVE RPC constant
const SelfRelative = 0x8000
// Filetime structure represents FILETIME RPC structure.
//
// The FILETIME structure is a 64-bit value that represents the number of 100-nanosecond
// intervals that have elapsed since January 1, 1601, Coordinated Universal Time (UTC).
type Filetime struct {
// dwLowDateTime: A 32-bit unsigned integer that contains the low-order bits of the
// file time.
LowDateTime uint32 `idl:"name:dwLowDateTime" json:"low_date_time"`
// dwHighDateTime: A 32-bit unsigned integer that contains the high-order bits of the
// file time.
HighDateTime uint32 `idl:"name:dwHighDateTime" json:"high_date_time"`
}
func (o *Filetime) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *Filetime) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(4); err != nil {
return err
}
if err := w.WriteData(o.LowDateTime); err != nil {
return err
}
if err := w.WriteData(o.HighDateTime); err != nil {
return err
}
return nil
}
func (o *Filetime) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(4); err != nil {
return err
}
if err := w.ReadData(&o.LowDateTime); err != nil {
return err
}
if err := w.ReadData(&o.HighDateTime); err != nil {
return err
}
return nil
}
// GUID structure represents GUID RPC structure.
//
// The packet version is used within block protocols. The following diagram represents
// a GUID as an opaque sequence of bytes.
//
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 1 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 2 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 3 | 1 |
// | | | | | | | | | | | 0 | | | | | | | | | | 0 | | | | | | | | | | 0 | |
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// | Data1 |
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// | Data2 | Data3 |
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// | Data4 |
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
// | ... |
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
//
// The following structure is an IDL representation of GUID equivalent to and compatible
// with a DCE UUID ([C706] section A.1) according to the following mappings.
type GUID struct {
// Data1 (4 bytes): The value of the Data1 member (section 2.3.4), in little-endian
// byte order.
//
// Data1: This member is generally treated as an opaque value. This member is equivalent
// to the time_low field of a DCE UUID ([C706] section A.1).
Data1 uint32 `idl:"name:Data1" json:"data1"`
// Data2 (2 bytes): The value of the Data2 member (section 2.3.4), in little-endian
// byte order.
//
// Data2: This member is generally treated as an opaque value. This member is equivalent
// to the time_mid field of a DCE UUID ([C706] section A.1).
Data2 uint16 `idl:"name:Data2" json:"data2"`
// Data3 (2 bytes): The value of the Data3 member (section 2.3.4), in little-endian
// byte order.
//
// Data3: This member is generally treated as an opaque value. This member is equivalent
// to the time_hi_and_version field of a DCE UUID ([C706] section A.1).
Data3 uint16 `idl:"name:Data3" json:"data3"`
// Data4 (8 bytes): The value of the Data4 member (section 2.3.4), in little-endian
// byte order.
//
// Data4: This array is generally treated as a sequence of opaque values. This member
// is equivalent to the following sequence of fields of a DCE UUID ([C706] section A.1)
// in this order: clock_seq_hi_and_reserved, clock_seq_low, and the sequence of bytes
// in the node field.
Data4 []byte `idl:"name:Data4" json:"data4"`
}
func (o *GUID) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *GUID) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(4); err != nil {
return err
}
if err := w.WriteData(o.Data1); err != nil {
return err
}
if err := w.WriteData(o.Data2); err != nil {
return err
}
if err := w.WriteData(o.Data3); err != nil {
return err
}
for i1 := range o.Data4 {
i1 := i1
if uint64(i1) >= 8 {
break
}
if err := w.WriteData(o.Data4[i1]); err != nil {
return err
}
}
for i1 := len(o.Data4); uint64(i1) < 8; i1++ {
if err := w.WriteData(uint8(0)); err != nil {
return err
}
}
if err := w.WriteTrailingGap(4); err != nil {
return err
}
return nil
}
func (o *GUID) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(4); err != nil {
return err
}
if err := w.ReadData(&o.Data1); err != nil {
return err
}
if err := w.ReadData(&o.Data2); err != nil {
return err
}
if err := w.ReadData(&o.Data3); err != nil {
return err
}
o.Data4 = make([]byte, 8)
for i1 := range o.Data4 {
i1 := i1
if err := w.ReadData(&o.Data4[i1]); err != nil {
return err
}
}
if err := w.ReadTrailingGap(4); err != nil {
return err
}
return nil
}
// UUID structure represents UUID RPC structure.
type UUID struct {
Data1 uint32 `idl:"name:Data1" json:"data1"`
Data2 uint16 `idl:"name:Data2" json:"data2"`
Data3 uint16 `idl:"name:Data3" json:"data3"`
Data4 []byte `idl:"name:Data4" json:"data4"`
}
func (o *UUID) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *UUID) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(4); err != nil {
return err
}
if err := w.WriteData(o.Data1); err != nil {
return err
}
if err := w.WriteData(o.Data2); err != nil {
return err
}
if err := w.WriteData(o.Data3); err != nil {
return err
}
for i1 := range o.Data4 {
i1 := i1
if uint64(i1) >= 8 {
break
}
if err := w.WriteData(o.Data4[i1]); err != nil {
return err
}
}
for i1 := len(o.Data4); uint64(i1) < 8; i1++ {
if err := w.WriteData(uint8(0)); err != nil {
return err
}
}
if err := w.WriteTrailingGap(4); err != nil {
return err
}
return nil
}
func (o *UUID) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(4); err != nil {
return err
}
if err := w.ReadData(&o.Data1); err != nil {
return err
}
if err := w.ReadData(&o.Data2); err != nil {
return err
}
if err := w.ReadData(&o.Data3); err != nil {
return err
}
o.Data4 = make([]byte, 8)
for i1 := range o.Data4 {
i1 := i1
if err := w.ReadData(&o.Data4[i1]); err != nil {
return err
}
}
if err := w.ReadTrailingGap(4); err != nil {
return err
}
return nil
}
// ClassID structure represents CLSID RPC structure.
type ClassID GUID
func (o *ClassID) GUID() *GUID { return (*GUID)(o) }
func (o *ClassID) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *ClassID) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(4); err != nil {
return err
}
if err := w.WriteData(o.Data1); err != nil {
return err
}
if err := w.WriteData(o.Data2); err != nil {
return err
}
if err := w.WriteData(o.Data3); err != nil {
return err
}
for i1 := range o.Data4 {
i1 := i1
if uint64(i1) >= 8 {
break
}
if err := w.WriteData(o.Data4[i1]); err != nil {
return err
}
}
for i1 := len(o.Data4); uint64(i1) < 8; i1++ {
if err := w.WriteData(uint8(0)); err != nil {
return err
}
}
if err := w.WriteTrailingGap(4); err != nil {
return err
}
return nil
}
func (o *ClassID) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(4); err != nil {
return err
}
if err := w.ReadData(&o.Data1); err != nil {
return err
}
if err := w.ReadData(&o.Data2); err != nil {
return err
}
if err := w.ReadData(&o.Data3); err != nil {
return err
}
o.Data4 = make([]byte, 8)
for i1 := range o.Data4 {
i1 := i1
if err := w.ReadData(&o.Data4[i1]); err != nil {
return err
}
}
if err := w.ReadTrailingGap(4); err != nil {
return err
}
return nil
}
// LargeInteger structure represents LARGE_INTEGER RPC structure.
//
// The LARGE_INTEGER structure is used to represent a 64-bit signed integer value.
type LargeInteger struct {
QuadPart int64 `idl:"name:QuadPart" json:"quad_part"`
}
func (o *LargeInteger) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *LargeInteger) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(8); err != nil {
return err
}
if err := w.WriteData(o.QuadPart); err != nil {
return err
}
return nil
}
func (o *LargeInteger) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(8); err != nil {
return err
}
if err := w.ReadData(&o.QuadPart); err != nil {
return err
}
return nil
}
// EventDescriptor structure represents EVENT_DESCRIPTOR RPC structure.
//
// The EVENT_DESCRIPTOR structure specifies the metadata that defines an event.
type EventDescriptor struct {
// Id: The event identifier.
ID uint16 `idl:"name:Id" json:"id"`
// Version: The version of the event, which indicates a revision to the event definition.
// The Version and Id members uniquely identify the event within the scope of a provider.
Version uint8 `idl:"name:Version" json:"version"`
// Channel: Defines the audience for the event (for example, administrator or developer).
Channel uint8 `idl:"name:Channel" json:"channel"`
// Level: Specifies the severity or level of detail included in the event (for example,
// informational or fatal).
Level uint8 `idl:"name:Level" json:"level"`
// Opcode: Identifies a step in a sequence of operations being performed within a Task.
Opcode uint8 `idl:"name:Opcode" json:"opcode"`
// Task: Identifies a larger unit of work within an application or component (broader
// in scope than the Opcode).
Task uint16 `idl:"name:Task" json:"task"`
// Keyword: A bitmask that specifies a logical group of related events. Each bit corresponds
// to one group. An event can belong to one or more groups. The keyword can contain
// one or more provider-defined keywords, standard keywords, or both.
//
// This structure represents an event defined in a manifest and is included in the EVENT_HEADER
// structure.
Keyword uint64 `idl:"name:Keyword" json:"keyword"`
}
func (o *EventDescriptor) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *EventDescriptor) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(8); err != nil {
return err
}
if err := w.WriteData(o.ID); err != nil {
return err
}
if err := w.WriteData(o.Version); err != nil {
return err
}
if err := w.WriteData(o.Channel); err != nil {
return err
}
if err := w.WriteData(o.Level); err != nil {
return err
}
if err := w.WriteData(o.Opcode); err != nil {
return err
}
if err := w.WriteData(o.Task); err != nil {
return err
}
if err := w.WriteData(o.Keyword); err != nil {
return err
}
return nil
}
func (o *EventDescriptor) UnmarshalNDR(ctx context.Context, w ndr.Reader) error {
if err := w.ReadAlign(8); err != nil {
return err
}
if err := w.ReadData(&o.ID); err != nil {
return err
}
if err := w.ReadData(&o.Version); err != nil {
return err
}
if err := w.ReadData(&o.Channel); err != nil {
return err
}
if err := w.ReadData(&o.Level); err != nil {
return err
}
if err := w.ReadData(&o.Opcode); err != nil {
return err
}
if err := w.ReadData(&o.Task); err != nil {
return err
}
if err := w.ReadData(&o.Keyword); err != nil {
return err
}
return nil
}
// EventHeader structure represents EVENT_HEADER RPC structure.
//
// The EVENT_HEADER structure defines the main parameters of an event.
type EventHeader struct {
// Size: Size of the event record, in bytes.
Size uint16 `idl:"name:Size" json:"size"`
// HeaderType: Reserved.
HeaderType uint16 `idl:"name:HeaderType" json:"header_type"`
// Flags: Flags that provide information about the event such as the type of session
// it was logged to and whether the event contains extended data. This member can contain
// one or more of the following flags.
//
// +-----------------------------------+----------------------------------------------------------------------------------+
// | | |
// | VALUE | MEANING |
// | | |
// +-----------------------------------+----------------------------------------------------------------------------------+
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_EXTENDED_INFO | The ExtendedData member of the event record contains data. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_PRIVATE_SESSION | The event was logged to a private session. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_STRING_ONLY | The event data is a null-terminated Unicode string. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_TRACE_MESSAGE | The provider used an implementation-specific trace message function to log the |
// | | event. Typically indicates that the event was written by the Windows software |
// | | trace preprocessor. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_NO_CPUTIME | Indicates that elapsed execution time was not recorded; the ProcessorTime member |
// | | can be used to determine the elapsed execution time. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_32_BIT_HEADER | Indicates that the provider was running on a 32-bit computer or in a WOW64 |
// | | session. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_64_BIT_HEADER | Indicates that the provider was running on a 64-bit computer. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_DECODE_GUID | Indicates that the ProviderId member of the event record is a decode GUID rather |
// | | than a control GUID.<2> |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_CLASSIC_HEADER | Indicates that provider used a trace event function to log the event. |
// +-----------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_FLAG_PROCESSOR_INDEX | If this flag is set, the identifier for the CPU that logged the event MUST be |
// | | accessed using the ProcessorIndex member of the BufferContext member of the |
// | | event record. If this flag is not set, the identifier for the CPU that logged |
// | | the event MUST be read from the ProcessorNumber member of the BufferContext |
// | | member of the event record.<3> |
// +-----------------------------------+----------------------------------------------------------------------------------+
Flags uint16 `idl:"name:Flags" json:"flags"`
// EventProperty: Indicates the source to use for parsing the event data.
//
// +---------------------------------------+----------------------------------------------------------------------------------+
// | | |
// | VALUE | MEANING |
// | | |
// +---------------------------------------+----------------------------------------------------------------------------------+
// +---------------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_PROPERTY_XML | Indicates that you need a manifest to parse the event data. |
// +---------------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_PROPERTY_FORWARDED_XML | Indicates that the event data contains within itself a fully rendered XML |
// | | description of the data, so you do not need a manifest to parse the event data. |
// +---------------------------------------+----------------------------------------------------------------------------------+
// | EVENT_HEADER_PROPERTY_LEGACY_EVENTLOG | Indicates that you need a WMI MOF class to parse the event data. |
// +---------------------------------------+----------------------------------------------------------------------------------+
EventProperty uint16 `idl:"name:EventProperty" json:"event_property"`
// ThreadId: Identifies the thread that generated the event.
ThreadID uint32 `idl:"name:ThreadId" json:"thread_id"`
// ProcessId: Identifies the process that generated the event.
ProcessID uint32 `idl:"name:ProcessId" json:"process_id"`
// TimeStamp: Contains the time that the event occurred. The resolution is system time
// unless the ProcessTraceMode member of EVENT_TRACE_LOGFILE contains the PROCESS_TRACE_MODE_RAW_TIMESTAMP
// flag, in which case the resolution depends on the value of the Wnode.ClientContext
// member of EVENT_TRACE_PROPERTIES at the time the controller created the session.
Timestamp *LargeInteger `idl:"name:TimeStamp" json:"timestamp"`
// ProviderId: GUID that uniquely identifies the provider that logged the event.
ProviderID *GUID `idl:"name:ProviderId" json:"provider_id"`
// EventDescriptor: Defines information about the event such as the event identifier
// and severity level.
EventDescriptor *EventDescriptor `idl:"name:EventDescriptor" json:"event_descriptor"`
Field10 *EventHeader_Field10 `idl:"name:" json:""`
// ActivityId: Identifier that relates two events.
//
// The KernelTime and UserTime members can be used to determine the CPU cost in units
// for a set of instructions (the values indicate the CPU usage charged to that thread
// at the time of logging). For example, if Event A and Event B are consecutively logged
// by the same thread and they have CPU usage numbers 150 and 175, then the activity
// that was performed by that thread between events A and B cost 25 CPU time units (175
// – 150).
ActivityID *GUID `idl:"name:ActivityId" json:"activity_id"`
}
func (o *EventHeader) xxx_PreparePayload(ctx context.Context) error {
if hook, ok := (interface{})(o).(interface{ AfterPreparePayload(context.Context) error }); ok {
if err := hook.AfterPreparePayload(ctx); err != nil {
return err
}
}
return nil
}
func (o *EventHeader) MarshalNDR(ctx context.Context, w ndr.Writer) error {
if err := o.xxx_PreparePayload(ctx); err != nil {
return err
}
if err := w.WriteAlign(8); err != nil {
return err
}
if err := w.WriteData(o.Size); err != nil {
return err
}
if err := w.WriteData(o.HeaderType); err != nil {
return err
}
if err := w.WriteData(o.Flags); err != nil {
return err
}
if err := w.WriteData(o.EventProperty); err != nil {
return err
}
if err := w.WriteData(o.ThreadID); err != nil {
return err
}
if err := w.WriteData(o.ProcessID); err != nil {
return err
}
if o.Timestamp != nil {
if err := o.Timestamp.MarshalNDR(ctx, w); err != nil {
return err
}
} else {
if err := (&LargeInteger{}).MarshalNDR(ctx, w); err != nil {
return err
}