blob: a7c17699f80e142899f865691283c9a2e87d0a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
|
// Code generated by gengotypes.py. DO NOT EDIT.
// source: libxl_types.idl
package xenlight
type Error int
const(
ErrorNonspecific Error = -1
ErrorVersion Error = -2
ErrorFail Error = -3
ErrorNi Error = -4
ErrorNomem Error = -5
ErrorInval Error = -6
ErrorBadfail Error = -7
ErrorGuestTimedout Error = -8
ErrorTimedout Error = -9
ErrorNoparavirt Error = -10
ErrorNotReady Error = -11
ErrorOseventRegFail Error = -12
ErrorBufferfull Error = -13
ErrorUnknownChild Error = -14
ErrorLockFail Error = -15
ErrorJsonConfigEmpty Error = -16
ErrorDeviceExists Error = -17
ErrorCheckpointDevopsDoesNotMatch Error = -18
ErrorCheckpointDeviceNotSupported Error = -19
ErrorVnumaConfigInvalid Error = -20
ErrorDomainNotfound Error = -21
ErrorAborted Error = -22
ErrorNotfound Error = -23
ErrorDomainDestroyed Error = -24
ErrorFeatureRemoved Error = -25
ErrorProtocolErrorQmp Error = -26
ErrorUnknownQmpError Error = -27
ErrorQmpGenericError Error = -28
ErrorQmpCommandNotFound Error = -29
ErrorQmpDeviceNotActive Error = -30
ErrorQmpDeviceNotFound Error = -31
ErrorQemuApi Error = -32
)
type DomainType int
const(
DomainTypeInvalid DomainType = -1
DomainTypeHvm DomainType = 1
DomainTypePv DomainType = 2
DomainTypePvh DomainType = 3
)
type RdmReserveStrategy int
const(
RdmReserveStrategyIgnore RdmReserveStrategy = 0
RdmReserveStrategyHost RdmReserveStrategy = 1
)
type RdmReservePolicy int
const(
RdmReservePolicyInvalid RdmReservePolicy = -1
RdmReservePolicyStrict RdmReservePolicy = 0
RdmReservePolicyRelaxed RdmReservePolicy = 1
)
type ChannelConnection int
const(
ChannelConnectionUnknown ChannelConnection = 0
ChannelConnectionPty ChannelConnection = 1
ChannelConnectionSocket ChannelConnection = 2
)
type DeviceModelVersion int
const(
DeviceModelVersionUnknown DeviceModelVersion = 0
DeviceModelVersionQemuXenTraditional DeviceModelVersion = 1
DeviceModelVersionQemuXen DeviceModelVersion = 2
)
type ConsoleType int
const(
ConsoleTypeUnknown ConsoleType = 0
ConsoleTypeSerial ConsoleType = 1
ConsoleTypePv ConsoleType = 2
ConsoleTypeVuart ConsoleType = 3
)
type DiskFormat int
const(
DiskFormatUnknown DiskFormat = 0
DiskFormatQcow DiskFormat = 1
DiskFormatQcow2 DiskFormat = 2
DiskFormatVhd DiskFormat = 3
DiskFormatRaw DiskFormat = 4
DiskFormatEmpty DiskFormat = 5
DiskFormatQed DiskFormat = 6
)
type DiskBackend int
const(
DiskBackendUnknown DiskBackend = 0
DiskBackendPhy DiskBackend = 1
DiskBackendTap DiskBackend = 2
DiskBackendQdisk DiskBackend = 3
DiskBackendStandalone DiskBackend = 4
)
type DiskSpecification int
const(
DiskSpecificationUnknown DiskSpecification = 0
DiskSpecificationXen DiskSpecification = 1
DiskSpecificationVirtio DiskSpecification = 2
)
type DiskTransport int
const(
DiskTransportUnknown DiskTransport = 0
DiskTransportMmio DiskTransport = 1
)
type NicType int
const(
NicTypeUnknown NicType = 0
NicTypeVifIoemu NicType = 1
NicTypeVif NicType = 2
)
type ActionOnShutdown int
const(
ActionOnShutdownDestroy ActionOnShutdown = 1
ActionOnShutdownRestart ActionOnShutdown = 2
ActionOnShutdownRestartRename ActionOnShutdown = 3
ActionOnShutdownPreserve ActionOnShutdown = 4
ActionOnShutdownCoredumpDestroy ActionOnShutdown = 5
ActionOnShutdownCoredumpRestart ActionOnShutdown = 6
ActionOnShutdownSoftReset ActionOnShutdown = 7
)
type Trigger int
const(
TriggerUnknown Trigger = 0
TriggerPower Trigger = 1
TriggerSleep Trigger = 2
TriggerNmi Trigger = 3
TriggerInit Trigger = 4
TriggerReset Trigger = 5
TriggerS3Resume Trigger = 6
)
type TscMode int
const(
TscModeDefault TscMode = 0
TscModeAlwaysEmulate TscMode = 1
TscModeNative TscMode = 2
TscModeNativeParavirt TscMode = 3
)
type GfxPassthruKind int
const(
GfxPassthruKindDefault GfxPassthruKind = 0
GfxPassthruKindIgd GfxPassthruKind = 1
)
type TimerMode int
const(
TimerModeUnknown TimerMode = -1
TimerModeDelayForMissedTicks TimerMode = 0
TimerModeNoDelayForMissedTicks TimerMode = 1
TimerModeNoMissedTicksPending TimerMode = 2
TimerModeOneMissedTickPending TimerMode = 3
)
type BiosType int
const(
BiosTypeUnknown BiosType = 0
BiosTypeRombios BiosType = 1
BiosTypeSeabios BiosType = 2
BiosTypeOvmf BiosType = 3
)
type Scheduler int
const(
SchedulerUnknown Scheduler = 0
SchedulerSedf Scheduler = 4
SchedulerCredit Scheduler = 5
SchedulerCredit2 Scheduler = 6
SchedulerArinc653 Scheduler = 7
SchedulerRtds Scheduler = 8
SchedulerNull Scheduler = 9
)
type ShutdownReason int
const(
ShutdownReasonUnknown ShutdownReason = -1
ShutdownReasonPoweroff ShutdownReason = 0
ShutdownReasonReboot ShutdownReason = 1
ShutdownReasonSuspend ShutdownReason = 2
ShutdownReasonCrash ShutdownReason = 3
ShutdownReasonWatchdog ShutdownReason = 4
ShutdownReasonSoftReset ShutdownReason = 5
)
type VgaInterfaceType int
const(
VgaInterfaceTypeUnknown VgaInterfaceType = 0
VgaInterfaceTypeCirrus VgaInterfaceType = 1
VgaInterfaceTypeStd VgaInterfaceType = 2
VgaInterfaceTypeNone VgaInterfaceType = 3
VgaInterfaceTypeQxl VgaInterfaceType = 4
)
type VendorDevice int
const(
VendorDeviceNone VendorDevice = 0
VendorDeviceXenserver VendorDevice = 1
)
type ViridianEnlightenment int
const(
ViridianEnlightenmentBase ViridianEnlightenment = 0
ViridianEnlightenmentFreq ViridianEnlightenment = 1
ViridianEnlightenmentTimeRefCount ViridianEnlightenment = 2
ViridianEnlightenmentReferenceTsc ViridianEnlightenment = 3
ViridianEnlightenmentHcallRemoteTlbFlush ViridianEnlightenment = 4
ViridianEnlightenmentApicAssist ViridianEnlightenment = 5
ViridianEnlightenmentCrashCtl ViridianEnlightenment = 6
ViridianEnlightenmentSynic ViridianEnlightenment = 7
ViridianEnlightenmentStimer ViridianEnlightenment = 8
ViridianEnlightenmentHcallIpi ViridianEnlightenment = 9
ViridianEnlightenmentExProcessorMasks ViridianEnlightenment = 10
ViridianEnlightenmentNoVpLimit ViridianEnlightenment = 11
ViridianEnlightenmentCpuHotplug ViridianEnlightenment = 12
)
type Hdtype int
const(
HdtypeIde Hdtype = 1
HdtypeAhci Hdtype = 2
)
type CheckpointedStream int
const(
CheckpointedStreamNone CheckpointedStream = 0
CheckpointedStreamRemus CheckpointedStream = 1
CheckpointedStreamColo CheckpointedStream = 2
)
type VuartType int
const(
VuartTypeUnknown VuartType = 0
VuartTypeSbsaUart VuartType = 1
)
type VkbBackend int
const(
VkbBackendUnknown VkbBackend = 0
VkbBackendQemu VkbBackend = 1
VkbBackendLinux VkbBackend = 2
)
type VirtioTransport int
const(
VirtioTransportUnknown VirtioTransport = 0
VirtioTransportMmio VirtioTransport = 1
)
type Passthrough int
const(
PassthroughDefault Passthrough = 0
PassthroughDisabled Passthrough = 1
PassthroughEnabled Passthrough = 2
PassthroughSyncPt Passthrough = 3
PassthroughSharePt Passthrough = 4
)
type IoportRange struct {
First uint32
Number uint32
}
type IomemRange struct {
Start uint64
Number uint64
Gfn uint64
}
type VgaInterfaceInfo struct {
Kind VgaInterfaceType
}
type VncInfo struct {
Enable Defbool
Listen string
Passwd string
Display int
Findunused Defbool
}
type SpiceInfo struct {
Enable Defbool
Port int
TlsPort int
Host string
DisableTicketing Defbool
Passwd string
AgentMouse Defbool
Vdagent Defbool
ClipboardSharing Defbool
Usbredirection int
ImageCompression string
StreamingVideo string
}
type SdlInfo struct {
Enable Defbool
Opengl Defbool
Display string
Xauthority string
}
type Dominfo struct {
Uuid Uuid
Domid Domid
Ssidref uint32
SsidLabel string
Running bool
Blocked bool
Paused bool
Shutdown bool
Dying bool
NeverStop bool
ShutdownReason ShutdownReason
OutstandingMemkb uint64
CurrentMemkb uint64
SharedMemkb uint64
PagedMemkb uint64
MaxMemkb uint64
CpuTime uint64
VcpuMaxId uint32
VcpuOnline uint32
Cpupool uint32
GpaddrBits byte
DomainType DomainType
}
type Cpupoolinfo struct {
Poolid uint32
PoolName string
Sched Scheduler
NDom uint32
Cpumap Bitmap
}
type Channelinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Evtch int
Rref int
Connection ChannelConnection
ConnectionUnion ChannelinfoConnectionUnion
}
type ChannelinfoConnectionUnion interface {
isChannelinfoConnectionUnion()
}
type ChannelinfoConnectionUnionPty struct {
Path string
}
func (x ChannelinfoConnectionUnionPty) isChannelinfoConnectionUnion(){}
type Vminfo struct {
Uuid Uuid
Domid Domid
}
type VersionInfo struct {
XenVersionMajor int
XenVersionMinor int
XenVersionExtra string
Compiler string
CompileBy string
CompileDomain string
CompileDate string
Capabilities string
Changeset string
VirtStart uint64
Pagesize int
Commandline string
BuildId string
}
type SmbiosType int
const(
SmbiosTypeBiosVendor SmbiosType = 1
SmbiosTypeBiosVersion SmbiosType = 2
SmbiosTypeSystemManufacturer SmbiosType = 3
SmbiosTypeSystemProductName SmbiosType = 4
SmbiosTypeSystemVersion SmbiosType = 5
SmbiosTypeSystemSerialNumber SmbiosType = 6
SmbiosTypeBaseboardManufacturer SmbiosType = 7
SmbiosTypeBaseboardProductName SmbiosType = 8
SmbiosTypeBaseboardVersion SmbiosType = 9
SmbiosTypeBaseboardSerialNumber SmbiosType = 10
SmbiosTypeBaseboardAssetTag SmbiosType = 11
SmbiosTypeBaseboardLocationInChassis SmbiosType = 12
SmbiosTypeEnclosureManufacturer SmbiosType = 13
SmbiosTypeEnclosureSerialNumber SmbiosType = 14
SmbiosTypeEnclosureAssetTag SmbiosType = 15
SmbiosTypeBatteryManufacturer SmbiosType = 16
SmbiosTypeBatteryDeviceName SmbiosType = 17
SmbiosTypeOem SmbiosType = 18
)
type Smbios struct {
Key SmbiosType
Value string
}
type DomainCreateInfo struct {
Type DomainType
Hap Defbool
Oos Defbool
Ssidref uint32
SsidLabel string
Name string
Domid Domid
Uuid Uuid
Xsdata KeyValueList
Platformdata KeyValueList
Poolid uint32
PoolName string
RunHotplugScripts Defbool
DriverDomain Defbool
Passthrough Passthrough
XendSuspendEvtchnCompat Defbool
}
type DomainRestoreParams struct {
CheckpointedStream int
StreamVersion uint32
ColoProxyScript string
UserspaceColoProxy Defbool
}
type SchedParams struct {
Vcpuid int
Weight int
Cap int
Period int
Extratime int
Budget int
}
type VcpuSchedParams struct {
Sched Scheduler
Vcpus []SchedParams
}
type DomainSchedParams struct {
Sched Scheduler
Weight int
Cap int
Period int
Budget int
Extratime int
Slice int
Latency int
}
type VnodeInfo struct {
Memkb uint64
Distances []uint32
Pnode uint32
Vcpus Bitmap
}
type GicVersion int
const(
GicVersionDefault GicVersion = 0
GicVersionV2 GicVersion = 32
GicVersionV3 GicVersion = 48
)
type TeeType int
const(
TeeTypeNone TeeType = 0
TeeTypeOptee TeeType = 1
)
type RdmReserve struct {
Strategy RdmReserveStrategy
Policy RdmReservePolicy
}
type Altp2MMode int
const(
Altp2MModeDisabled Altp2MMode = 0
Altp2MModeMixed Altp2MMode = 1
Altp2MModeExternal Altp2MMode = 2
Altp2MModeLimited Altp2MMode = 3
)
type DomainBuildInfo struct {
MaxVcpus int
AvailVcpus Bitmap
Cpumap Bitmap
Nodemap Bitmap
VcpuHardAffinity []Bitmap
VcpuSoftAffinity []Bitmap
NumaPlacement Defbool
TscMode TscMode
MaxMemkb uint64
TargetMemkb uint64
VideoMemkb uint64
ShadowMemkb uint64
IommuMemkb uint64
RtcTimeoffset uint32
ExecSsidref uint32
ExecSsidLabel string
Localtime Defbool
DisableMigrate Defbool
Cpuid CpuidPolicyList
BlkdevStart string
VnumaNodes []VnodeInfo
MaxGrantFrames uint32
MaxMaptrackFrames uint32
MaxGrantVersion int
DeviceModelVersion DeviceModelVersion
DeviceModelStubdomain Defbool
StubdomainMemkb uint64
StubdomainKernel string
StubdomainCmdline string
StubdomainRamdisk string
DeviceModel string
DeviceModelSsidref uint32
DeviceModelSsidLabel string
DeviceModelUser string
Extra StringList
ExtraPv StringList
ExtraHvm StringList
SchedParams DomainSchedParams
Ioports []IoportRange
Irqs []uint32
Iomem []IomemRange
ClaimMode Defbool
EventChannels uint32
Kernel string
Cmdline string
Ramdisk string
DeviceTree string
Acpi Defbool
Bootloader string
BootloaderArgs StringList
TimerMode TimerMode
NestedHvm Defbool
Apic Defbool
DmRestrict Defbool
Tee TeeType
Type DomainType
TypeUnion DomainBuildInfoTypeUnion
ArchArm struct {
GicVersion GicVersion
Vuart VuartType
}
ArchX86 struct {
MsrRelaxed Defbool
}
Altp2M Altp2MMode
VmtraceBufKb int
Vpmu Defbool
}
type DomainBuildInfoTypeUnion interface {
isDomainBuildInfoTypeUnion()
}
type DomainBuildInfoTypeUnionHvm struct {
Firmware string
Bios BiosType
Pae Defbool
Apic Defbool
Acpi Defbool
AcpiS3 Defbool
AcpiS4 Defbool
AcpiLaptopSlate Defbool
Nx Defbool
Viridian Defbool
ViridianEnable Bitmap
ViridianDisable Bitmap
Timeoffset string
Hpet Defbool
VptAlign Defbool
MmioHoleMemkb uint64
TimerMode TimerMode
NestedHvm Defbool
Altp2M Defbool
SystemFirmware string
SmbiosFirmware string
Smbios []Smbios
AcpiFirmware string
Hdtype Hdtype
Nographic Defbool
Vga VgaInterfaceInfo
Vnc VncInfo
Keymap string
Sdl SdlInfo
Spice SpiceInfo
GfxPassthru Defbool
GfxPassthruKind GfxPassthruKind
Serial string
Boot string
Usb Defbool
Usbversion int
Usbdevice string
VkbDevice Defbool
Soundhw string
XenPlatformPci Defbool
UsbdeviceList StringList
VendorDevice VendorDevice
MsVmGenid MsVmGenid
SerialList StringList
Rdm RdmReserve
RdmMemBoundaryMemkb uint64
McaCaps uint64
}
func (x DomainBuildInfoTypeUnionHvm) isDomainBuildInfoTypeUnion(){}
type DomainBuildInfoTypeUnionPv struct {
Kernel string
SlackMemkb uint64
Bootloader string
BootloaderArgs StringList
Cmdline string
Ramdisk string
Features string
E820Host Defbool
}
func (x DomainBuildInfoTypeUnionPv) isDomainBuildInfoTypeUnion(){}
type DomainBuildInfoTypeUnionPvh struct {
Pvshim Defbool
PvshimPath string
PvshimCmdline string
PvshimExtra string
}
func (x DomainBuildInfoTypeUnionPvh) isDomainBuildInfoTypeUnion(){}
type DeviceVfb struct {
BackendDomid Domid
BackendDomname string
Devid Devid
Vnc VncInfo
Sdl SdlInfo
Keymap string
}
type DeviceVkb struct {
BackendDomid Domid
BackendDomname string
Devid Devid
BackendType VkbBackend
UniqueId string
FeatureDisableKeyboard bool
FeatureDisablePointer bool
FeatureAbsPointer bool
FeatureRawPointer bool
FeatureMultiTouch bool
Width uint32
Height uint32
MultiTouchWidth uint32
MultiTouchHeight uint32
MultiTouchNumContacts uint32
}
type DeviceVirtio struct {
BackendDomid Domid
BackendDomname string
Type string
Transport VirtioTransport
Devid Devid
Irq uint32
Base uint64
}
type DeviceDisk struct {
BackendDomid Domid
BackendDomname string
PdevPath string
Vdev string
Backend DiskBackend
Format DiskFormat
Script string
Removable int
Readwrite int
IsCdrom int
DirectIoSafe bool
DiscardEnable Defbool
Specification DiskSpecification
Transport DiskTransport
Irq uint32
Base uint64
ColoEnable Defbool
ColoRestoreEnable Defbool
ColoHost string
ColoPort int
ColoExport string
ActiveDisk string
HiddenDisk string
Trusted Defbool
}
type DeviceNic struct {
BackendDomid Domid
BackendDomname string
Devid Devid
Mtu int
Model string
Mac Mac
Ip string
Bridge string
Ifname string
Script string
Nictype NicType
RateBytesPerInterval uint64
RateIntervalUsecs uint32
Gatewaydev string
ColoftForwarddev string
ColoSockMirrorId string
ColoSockMirrorIp string
ColoSockMirrorPort string
ColoSockComparePriInId string
ColoSockComparePriInIp string
ColoSockComparePriInPort string
ColoSockCompareSecInId string
ColoSockCompareSecInIp string
ColoSockCompareSecInPort string
ColoSockCompareNotifyId string
ColoSockCompareNotifyIp string
ColoSockCompareNotifyPort string
ColoSockRedirector0Id string
ColoSockRedirector0Ip string
ColoSockRedirector0Port string
ColoSockRedirector1Id string
ColoSockRedirector1Ip string
ColoSockRedirector1Port string
ColoSockRedirector2Id string
ColoSockRedirector2Ip string
ColoSockRedirector2Port string
ColoFilterMirrorQueue string
ColoFilterMirrorOutdev string
ColoFilterRedirector0Queue string
ColoFilterRedirector0Indev string
ColoFilterRedirector0Outdev string
ColoFilterRedirector1Queue string
ColoFilterRedirector1Indev string
ColoFilterRedirector1Outdev string
ColoComparePriIn string
ColoCompareSecIn string
ColoCompareOut string
ColoCompareNotifyDev string
ColoSockSecRedirector0Id string
ColoSockSecRedirector0Ip string
ColoSockSecRedirector0Port string
ColoSockSecRedirector1Id string
ColoSockSecRedirector1Ip string
ColoSockSecRedirector1Port string
ColoFilterSecRedirector0Queue string
ColoFilterSecRedirector0Indev string
ColoFilterSecRedirector0Outdev string
ColoFilterSecRedirector1Queue string
ColoFilterSecRedirector1Indev string
ColoFilterSecRedirector1Outdev string
ColoFilterSecRewriter0Queue string
ColoCheckpointHost string
ColoCheckpointPort string
Trusted Defbool
}
type DevicePci struct {
Func byte
Dev byte
Bus byte
Domain int
Vdevfn uint32
VfuncMask uint32
Msitranslate bool
PowerMgmt bool
Permissive bool
Seize bool
RdmPolicy RdmReservePolicy
Name string
}
type DeviceRdm struct {
Start uint64
Size uint64
Policy RdmReservePolicy
}
type UsbctrlType int
const(
UsbctrlTypeAuto UsbctrlType = 0
UsbctrlTypePv UsbctrlType = 1
UsbctrlTypeDevicemodel UsbctrlType = 2
UsbctrlTypeQusb UsbctrlType = 3
)
type UsbdevType int
const(
UsbdevTypeHostdev UsbdevType = 1
)
type DeviceUsbctrl struct {
Type UsbctrlType
Devid Devid
Version int
Ports int
BackendDomid Domid
BackendDomname string
}
type DeviceUsbdev struct {
Ctrl Devid
Port int
Type UsbdevType
TypeUnion DeviceUsbdevTypeUnion
}
type DeviceUsbdevTypeUnion interface {
isDeviceUsbdevTypeUnion()
}
type DeviceUsbdevTypeUnionHostdev struct {
Hostbus byte
Hostaddr byte
}
func (x DeviceUsbdevTypeUnionHostdev) isDeviceUsbdevTypeUnion(){}
type DeviceDtdev struct {
Path string
}
type DeviceVtpm struct {
BackendDomid Domid
BackendDomname string
Devid Devid
Uuid Uuid
}
type DeviceP9 struct {
BackendDomid Domid
BackendDomname string
Tag string
Path string
SecurityModel string
Devid Devid
}
type DevicePvcallsif struct {
BackendDomid Domid
BackendDomname string
Devid Devid
}
type DeviceChannel struct {
BackendDomid Domid
BackendDomname string
Devid Devid
Name string
Connection ChannelConnection
ConnectionUnion DeviceChannelConnectionUnion
}
type DeviceChannelConnectionUnion interface {
isDeviceChannelConnectionUnion()
}
type DeviceChannelConnectionUnionSocket struct {
Path string
}
func (x DeviceChannelConnectionUnionSocket) isDeviceChannelConnectionUnion(){}
type ConnectorParam struct {
UniqueId string
Width uint32
Height uint32
}
type DeviceVdispl struct {
BackendDomid Domid
BackendDomname string
Devid Devid
BeAlloc bool
Connectors []ConnectorParam
}
type VsndPcmFormat int
const(
VsndPcmFormatS8 VsndPcmFormat = 1
VsndPcmFormatU8 VsndPcmFormat = 2
VsndPcmFormatS16Le VsndPcmFormat = 3
VsndPcmFormatS16Be VsndPcmFormat = 4
VsndPcmFormatU16Le VsndPcmFormat = 5
VsndPcmFormatU16Be VsndPcmFormat = 6
VsndPcmFormatS24Le VsndPcmFormat = 7
VsndPcmFormatS24Be VsndPcmFormat = 8
VsndPcmFormatU24Le VsndPcmFormat = 9
VsndPcmFormatU24Be VsndPcmFormat = 10
VsndPcmFormatS32Le VsndPcmFormat = 11
VsndPcmFormatS32Be VsndPcmFormat = 12
VsndPcmFormatU32Le VsndPcmFormat = 13
VsndPcmFormatU32Be VsndPcmFormat = 14
VsndPcmFormatF32Le VsndPcmFormat = 15
VsndPcmFormatF32Be VsndPcmFormat = 16
VsndPcmFormatF64Le VsndPcmFormat = 17
VsndPcmFormatF64Be VsndPcmFormat = 18
VsndPcmFormatIec958SubframeLe VsndPcmFormat = 19
VsndPcmFormatIec958SubframeBe VsndPcmFormat = 20
VsndPcmFormatMuLaw VsndPcmFormat = 21
VsndPcmFormatALaw VsndPcmFormat = 22
VsndPcmFormatImaAdpcm VsndPcmFormat = 23
VsndPcmFormatMpeg VsndPcmFormat = 24
VsndPcmFormatGsm VsndPcmFormat = 25
)
type VsndParams struct {
SampleRates []uint32
SampleFormats []VsndPcmFormat
ChannelsMin uint32
ChannelsMax uint32
BufferSize uint32
}
type VsndStreamType int
const(
VsndStreamTypeP VsndStreamType = 1
VsndStreamTypeC VsndStreamType = 2
)
type VsndStream struct {
UniqueId string
Type VsndStreamType
Params VsndParams
}
type VsndPcm struct {
Name string
Params VsndParams
Streams []VsndStream
}
type DeviceVsnd struct {
BackendDomid Domid
BackendDomname string
Devid Devid
ShortName string
LongName string
Params VsndParams
Pcms []VsndPcm
}
type DomainConfig struct {
CInfo DomainCreateInfo
BInfo DomainBuildInfo
Disks []DeviceDisk
Nics []DeviceNic
Pcidevs []DevicePci
Rdms []DeviceRdm
Dtdevs []DeviceDtdev
Vfbs []DeviceVfb
Vkbs []DeviceVkb
Virtios []DeviceVirtio
Vtpms []DeviceVtpm
P9S []DeviceP9
Pvcallsifs []DevicePvcallsif
Vdispls []DeviceVdispl
Vsnds []DeviceVsnd
Channels []DeviceChannel
Usbctrls []DeviceUsbctrl
Usbdevs []DeviceUsbdev
OnPoweroff ActionOnShutdown
OnReboot ActionOnShutdown
OnWatchdog ActionOnShutdown
OnCrash ActionOnShutdown
OnSoftReset ActionOnShutdown
}
type Diskinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Evtch int
Rref int
}
type Nicinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Evtch int
RrefTx int
RrefRx int
}
type Vtpminfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Evtch int
Rref int
Uuid Uuid
}
type Usbctrlinfo struct {
Type UsbctrlType
Devid Devid
Version int
Ports int
Backend string
BackendId uint32
Frontend string
FrontendId uint32
State int
Evtch int
RefUrb int
RefConn int
}
type Vcpuinfo struct {
Vcpuid uint32
Cpu uint32
Online bool
Blocked bool
Running bool
VcpuTime uint64
Cpumap Bitmap
CpumapSoft Bitmap
}
type Physinfo struct {
ThreadsPerCore uint32
CoresPerSocket uint32
MaxCpuId uint32
NrCpus uint32
CpuKhz uint32
TotalPages uint64
FreePages uint64
ScrubPages uint64
OutstandingPages uint64
SharingFreedPages uint64
SharingUsedFrames uint64
MaxPossibleMfn uint64
NrNodes uint32
HwCap Hwcap
CapHvm bool
CapPv bool
CapHvmDirectio bool
CapHap bool
CapShadow bool
CapIommuHapPtShare bool
CapVmtrace bool
CapVpmu bool
CapGnttabV1 bool
CapGnttabV2 bool
}
type Connectorinfo struct {
UniqueId string
Width uint32
Height uint32
ReqEvtch int
ReqRref int
EvtEvtch int
EvtRref int
}
type Vdisplinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
BeAlloc bool
Connectors []Connectorinfo
}
type Streaminfo struct {
ReqEvtch int
ReqRref int
}
type Pcminfo struct {
Streams []Streaminfo
}
type Vsndinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Pcms []Pcminfo
}
type Vkbinfo struct {
Backend string
BackendId uint32
Frontend string
FrontendId uint32
Devid Devid
State int
Evtch int
Rref int
}
type Numainfo struct {
Size uint64
Free uint64
Dists []uint32
}
type Cputopology struct {
Core uint32
Socket uint32
Node uint32
}
type Pcitopology struct {
Seg uint16
Bus byte
Devfn byte
Node uint32
}
type SchedCreditParams struct {
TsliceMs int
RatelimitUs int
VcpuMigrDelayUs int
}
type SchedCredit2Params struct {
RatelimitUs int
}
type DomainRemusInfo struct {
Interval int
AllowUnsafe Defbool
Blackhole Defbool
Compression Defbool
Netbuf Defbool
Netbufscript string
Diskbuf Defbool
Colo Defbool
UserspaceColoProxy Defbool
}
type EventType int
const(
EventTypeDomainShutdown EventType = 1
EventTypeDomainDeath EventType = 2
EventTypeDiskEject EventType = 3
EventTypeOperationComplete EventType = 4
EventTypeDomainCreateConsoleAvailable EventType = 5
)
type Event struct {
Link EvLink
Domid Domid
Domuuid Uuid
ForUser uint64
Type EventType
TypeUnion EventTypeUnion
}
type EventTypeUnion interface {
isEventTypeUnion()
}
type EventTypeUnionDomainShutdown struct {
ShutdownReason byte
}
func (x EventTypeUnionDomainShutdown) isEventTypeUnion(){}
type EventTypeUnionDiskEject struct {
Vdev string
Disk DeviceDisk
}
func (x EventTypeUnionDiskEject) isEventTypeUnion(){}
type EventTypeUnionOperationComplete struct {
Rc int
}
func (x EventTypeUnionOperationComplete) isEventTypeUnion(){}
type PsrCmtType int
const(
PsrCmtTypeCacheOccupancy PsrCmtType = 1
PsrCmtTypeTotalMemCount PsrCmtType = 2
PsrCmtTypeLocalMemCount PsrCmtType = 3
)
type PsrCbmType int
const(
PsrCbmTypeUnknown PsrCbmType = 0
PsrCbmTypeL3Cbm PsrCbmType = 1
PsrCbmTypeL3CbmCode PsrCbmType = 2
PsrCbmTypeL3CbmData PsrCbmType = 3
PsrCbmTypeL2Cbm PsrCbmType = 4
PsrCbmTypeMbaThrtl PsrCbmType = 5
)
type PsrCatInfo struct {
Id uint32
CosMax uint32
CbmLen uint32
CdpEnabled bool
}
type PsrFeatType int
const(
PsrFeatTypeCat PsrFeatType = 1
PsrFeatTypeMba PsrFeatType = 2
)
type PsrHwInfo struct {
Id uint32
Type PsrFeatType
TypeUnion PsrHwInfoTypeUnion
}
type PsrHwInfoTypeUnion interface {
isPsrHwInfoTypeUnion()
}
type PsrHwInfoTypeUnionCat struct {
CosMax uint32
CbmLen uint32
CdpEnabled bool
}
func (x PsrHwInfoTypeUnionCat) isPsrHwInfoTypeUnion(){}
type PsrHwInfoTypeUnionMba struct {
CosMax uint32
ThrtlMax uint32
Linear bool
}
func (x PsrHwInfoTypeUnionMba) isPsrHwInfoTypeUnion(){}
|