domain_conf.h 55.8 KB
Newer Older
1 2 3
/*
 * domain_conf.h: domain XML processing
 *
4
 * Copyright (C) 2006-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * Copyright (C) 2006-2008 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#ifndef __DOMAIN_CONF_H
25
# define __DOMAIN_CONF_H
26

27 28 29
# include <libxml/parser.h>
# include <libxml/tree.h>
# include <libxml/xpath.h>
30

31 32 33 34 35 36 37 38
# include "internal.h"
# include "capabilities.h"
# include "storage_encryption_conf.h"
# include "cpu_conf.h"
# include "util.h"
# include "threads.h"
# include "hash.h"
# include "network.h"
39 40
# include "nwfilter_params.h"
# include "nwfilter_conf.h"
41
# include "macvtap.h"
42
# include "sysinfo.h"
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

/* Different types of hypervisor */
/* NB: Keep in sync with virDomainVirtTypeToString impl */
enum virDomainVirtType {
    VIR_DOMAIN_VIRT_QEMU,
    VIR_DOMAIN_VIRT_KQEMU,
    VIR_DOMAIN_VIRT_KVM,
    VIR_DOMAIN_VIRT_XEN,
    VIR_DOMAIN_VIRT_LXC,
    VIR_DOMAIN_VIRT_UML,
    VIR_DOMAIN_VIRT_OPENVZ,
    VIR_DOMAIN_VIRT_VSERVER,
    VIR_DOMAIN_VIRT_LDOM,
    VIR_DOMAIN_VIRT_TEST,
    VIR_DOMAIN_VIRT_VMWARE,
    VIR_DOMAIN_VIRT_HYPERV,
59
    VIR_DOMAIN_VIRT_VBOX,
D
Daniel Veillard 已提交
60
    VIR_DOMAIN_VIRT_ONE,
61
    VIR_DOMAIN_VIRT_PHYP,
62 63 64 65

    VIR_DOMAIN_VIRT_LAST,
};

66 67 68
enum virDomainDeviceAddressType {
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE,
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_PCI,
69
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE,
70
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_VIRTIO_SERIAL,
E
Eric Blake 已提交
71
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_CCID,
72
    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_USB,
73 74 75 76 77 78 79 80 81 82 83 84 85

    VIR_DOMAIN_DEVICE_ADDRESS_TYPE_LAST
};

typedef struct _virDomainDevicePCIAddress virDomainDevicePCIAddress;
typedef virDomainDevicePCIAddress *virDomainDevicePCIAddressPtr;
struct _virDomainDevicePCIAddress {
    unsigned int domain;
    unsigned int bus;
    unsigned int slot;
    unsigned int function;
};

86 87 88 89 90 91 92 93
typedef struct _virDomainDeviceDriveAddress virDomainDeviceDriveAddress;
typedef virDomainDeviceDriveAddress *virDomainDeviceDriveAddressPtr;
struct _virDomainDeviceDriveAddress {
    unsigned int controller;
    unsigned int bus;
    unsigned int unit;
};

94 95 96 97 98
typedef struct _virDomainDeviceVirtioSerialAddress virDomainDeviceVirtioSerialAddress;
typedef virDomainDeviceVirtioSerialAddress *virDomainDeviceVirtioSerialAddressPtr;
struct _virDomainDeviceVirtioSerialAddress {
    unsigned int controller;
    unsigned int bus;
99
    unsigned int port;
100 101
};

E
Eric Blake 已提交
102 103 104 105 106 107 108
typedef struct _virDomainDeviceCcidAddress virDomainDeviceCcidAddress;
typedef virDomainDeviceCcidAddress *virDomainDeviceCcidAddressPtr;
struct _virDomainDeviceCcidAddress {
    unsigned int controller;
    unsigned int slot;
};

109 110 111 112
typedef struct _virDomainDeviceUSBAddress virDomainDeviceUSBAddress;
typedef virDomainDeviceUSBAddress *virDomainDeviceUSBAddressPtr;
struct _virDomainDeviceUSBAddress {
    unsigned int bus;
113
    char *port;
114 115
};

116 117 118 119 120 121 122 123 124 125 126 127 128
enum virDomainControllerMaster {
    VIR_DOMAIN_CONTROLLER_MASTER_NONE,
    VIR_DOMAIN_CONTROLLER_MASTER_USB,

    VIR_DOMAIN_CONTROLLER_MASTER_LAST
};

typedef struct _virDomainDeviceUSBMaster virDomainDeviceUSBMaster;
typedef virDomainDeviceUSBMaster *virDomainDeviceUSBMasterPtr;
struct _virDomainDeviceUSBMaster {
    unsigned int startport;
};

129 130 131
typedef struct _virDomainDeviceInfo virDomainDeviceInfo;
typedef virDomainDeviceInfo *virDomainDeviceInfoPtr;
struct _virDomainDeviceInfo {
D
Daniel P. Berrange 已提交
132
    char *alias;
133 134 135
    int type;
    union {
        virDomainDevicePCIAddress pci;
136
        virDomainDeviceDriveAddress drive;
137
        virDomainDeviceVirtioSerialAddress vioserial;
E
Eric Blake 已提交
138
        virDomainDeviceCcidAddress ccid;
139
        virDomainDeviceUSBAddress usb;
140
    } addr;
141 142 143 144
    int mastertype;
    union {
        virDomainDeviceUSBMaster usb;
    } master;
145 146
};

147 148 149 150 151 152 153 154 155
typedef struct _virDomainLeaseDef virDomainLeaseDef;
typedef virDomainLeaseDef *virDomainLeaseDefPtr;
struct _virDomainLeaseDef {
    char *lockspace;
    char *key;
    char *path;
    unsigned long long offset;
};

156

157 158 159 160
/* Two types of disk backends */
enum virDomainDiskType {
    VIR_DOMAIN_DISK_TYPE_BLOCK,
    VIR_DOMAIN_DISK_TYPE_FILE,
161
    VIR_DOMAIN_DISK_TYPE_DIR,
M
MORITA Kazutaka 已提交
162
    VIR_DOMAIN_DISK_TYPE_NETWORK,
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

    VIR_DOMAIN_DISK_TYPE_LAST
};

/* Three types of disk frontend */
enum virDomainDiskDevice {
    VIR_DOMAIN_DISK_DEVICE_DISK,
    VIR_DOMAIN_DISK_DEVICE_CDROM,
    VIR_DOMAIN_DISK_DEVICE_FLOPPY,

    VIR_DOMAIN_DISK_DEVICE_LAST
};

enum virDomainDiskBus {
    VIR_DOMAIN_DISK_BUS_IDE,
    VIR_DOMAIN_DISK_BUS_FDC,
    VIR_DOMAIN_DISK_BUS_SCSI,
    VIR_DOMAIN_DISK_BUS_VIRTIO,
    VIR_DOMAIN_DISK_BUS_XEN,
182
    VIR_DOMAIN_DISK_BUS_USB,
183
    VIR_DOMAIN_DISK_BUS_UML,
184
    VIR_DOMAIN_DISK_BUS_SATA,
185 186 187 188

    VIR_DOMAIN_DISK_BUS_LAST
};

189 190 191 192 193
enum  virDomainDiskCache {
    VIR_DOMAIN_DISK_CACHE_DEFAULT,
    VIR_DOMAIN_DISK_CACHE_DISABLE,
    VIR_DOMAIN_DISK_CACHE_WRITETHRU,
    VIR_DOMAIN_DISK_CACHE_WRITEBACK,
194
    VIR_DOMAIN_DISK_CACHE_DIRECTSYNC,
195 196 197 198

    VIR_DOMAIN_DISK_CACHE_LAST
};

199 200 201 202
enum  virDomainDiskErrorPolicy {
    VIR_DOMAIN_DISK_ERROR_POLICY_DEFAULT,
    VIR_DOMAIN_DISK_ERROR_POLICY_STOP,
    VIR_DOMAIN_DISK_ERROR_POLICY_IGNORE,
203
    VIR_DOMAIN_DISK_ERROR_POLICY_ENOSPACE,
204 205 206 207

    VIR_DOMAIN_DISK_ERROR_POLICY_LAST
};

M
MORITA Kazutaka 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
enum virDomainDiskProtocol {
    VIR_DOMAIN_DISK_PROTOCOL_NBD,
    VIR_DOMAIN_DISK_PROTOCOL_RBD,
    VIR_DOMAIN_DISK_PROTOCOL_SHEEPDOG,

    VIR_DOMAIN_DISK_PROTOCOL_LAST
};

typedef struct _virDomainDiskHostDef virDomainDiskHostDef;
typedef virDomainDiskHostDef *virDomainDiskHostDefPtr;
struct _virDomainDiskHostDef {
    char *name;
    char *port;
};

M
Matthias Dahl 已提交
223 224 225 226 227 228 229 230
enum  virDomainDiskIo {
    VIR_DOMAIN_DISK_IO_DEFAULT,
    VIR_DOMAIN_DISK_IO_NATIVE,
    VIR_DOMAIN_DISK_IO_THREADS,

    VIR_DOMAIN_DISK_IO_LAST
};

231 232 233 234 235 236 237 238
enum virDomainIoEventFd {
    VIR_DOMAIN_IO_EVENT_FD_DEFAULT = 0,
    VIR_DOMAIN_IO_EVENT_FD_ON,
    VIR_DOMAIN_IO_EVENT_FD_OFF,

    VIR_DOMAIN_IO_EVENT_FD_LAST
};

239 240 241 242 243 244 245 246
enum virDomainVirtioEventIdx {
    VIR_DOMAIN_VIRTIO_EVENT_IDX_DEFAULT = 0,
    VIR_DOMAIN_VIRTIO_EVENT_IDX_ON,
    VIR_DOMAIN_VIRTIO_EVENT_IDX_OFF,

    VIR_DOMAIN_VIRTIO_EVENT_IDX_LAST
};

247 248 249 250 251 252 253 254 255
/* Stores the virtual disk configuration */
typedef struct _virDomainDiskDef virDomainDiskDef;
typedef virDomainDiskDef *virDomainDiskDefPtr;
struct _virDomainDiskDef {
    int type;
    int device;
    int bus;
    char *src;
    char *dst;
M
MORITA Kazutaka 已提交
256 257 258
    int protocol;
    int nhosts;
    virDomainDiskHostDefPtr hosts;
259 260
    char *driverName;
    char *driverType;
261
    char *serial;
262
    int cachemode;
263
    int error_policy;
264
    int bootIndex;
M
Matthias Dahl 已提交
265
    int iomode;
266
    int ioeventfd;
267
    int event_idx;
268 269
    unsigned int readonly : 1;
    unsigned int shared : 1;
270
    virDomainDeviceInfo info;
271
    virStorageEncryptionPtr encryption;
272 273 274
};


275 276 277 278 279
enum virDomainControllerType {
    VIR_DOMAIN_CONTROLLER_TYPE_IDE,
    VIR_DOMAIN_CONTROLLER_TYPE_FDC,
    VIR_DOMAIN_CONTROLLER_TYPE_SCSI,
    VIR_DOMAIN_CONTROLLER_TYPE_SATA,
280
    VIR_DOMAIN_CONTROLLER_TYPE_VIRTIO_SERIAL,
E
Eric Blake 已提交
281
    VIR_DOMAIN_CONTROLLER_TYPE_CCID,
282
    VIR_DOMAIN_CONTROLLER_TYPE_USB,
283 284 285 286

    VIR_DOMAIN_CONTROLLER_TYPE_LAST
};

287

288 289 290 291 292 293
enum virDomainControllerModelSCSI {
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_AUTO,
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_BUSLOGIC,
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC,
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1068,
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VMPVSCSI,
294

295
    VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LAST
296 297
};

M
Marc-André Lureau 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311
enum virDomainControllerModelUSB {
    VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX3_UHCI,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_PIIX4_UHCI,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_EHCI,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_EHCI1,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI1,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI2,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_ICH9_UHCI3,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_VT82C686B_UHCI,
    VIR_DOMAIN_CONTROLLER_MODEL_USB_PCI_OHCI,

    VIR_DOMAIN_CONTROLLER_MODEL_USB_LAST
};

312 313 314 315 316 317 318
typedef struct _virDomainVirtioSerialOpts virDomainVirtioSerialOpts;
typedef virDomainVirtioSerialOpts *virDomainVirtioSerialOptsPtr;
struct _virDomainVirtioSerialOpts {
    int ports;   /* -1 == undef */
    int vectors; /* -1 == undef */
};

319 320 321 322 323 324
/* Stores the virtual disk controller configuration */
typedef struct _virDomainControllerDef virDomainControllerDef;
typedef virDomainControllerDef *virDomainControllerDefPtr;
struct _virDomainControllerDef {
    int type;
    int idx;
325
    int model; /* -1 == undef */
326 327 328
    union {
        virDomainVirtioSerialOpts vioserial;
    } opts;
329 330 331 332
    virDomainDeviceInfo info;
};


333 334 335 336 337 338 339 340 341 342
/* Two types of disk backends */
enum virDomainFSType {
    VIR_DOMAIN_FS_TYPE_MOUNT,   /* Better named 'bind' */
    VIR_DOMAIN_FS_TYPE_BLOCK,
    VIR_DOMAIN_FS_TYPE_FILE,
    VIR_DOMAIN_FS_TYPE_TEMPLATE,

    VIR_DOMAIN_FS_TYPE_LAST
};

343 344 345 346 347 348 349 350 351
/* Filesystem mount access mode  */
enum virDomainFSAccessMode {
    VIR_DOMAIN_FS_ACCESSMODE_PASSTHROUGH,
    VIR_DOMAIN_FS_ACCESSMODE_MAPPED,
    VIR_DOMAIN_FS_ACCESSMODE_SQUASH,

    VIR_DOMAIN_FS_ACCESSMODE_LAST
};

352 353 354 355
typedef struct _virDomainFSDef virDomainFSDef;
typedef virDomainFSDef *virDomainFSDefPtr;
struct _virDomainFSDef {
    int type;
356
    int accessmode;
357 358 359
    char *src;
    char *dst;
    unsigned int readonly : 1;
360
    virDomainDeviceInfo info;
361 362 363
};


364 365 366 367 368 369 370 371 372
/* 5 different types of networking config */
enum virDomainNetType {
    VIR_DOMAIN_NET_TYPE_USER,
    VIR_DOMAIN_NET_TYPE_ETHERNET,
    VIR_DOMAIN_NET_TYPE_SERVER,
    VIR_DOMAIN_NET_TYPE_CLIENT,
    VIR_DOMAIN_NET_TYPE_MCAST,
    VIR_DOMAIN_NET_TYPE_NETWORK,
    VIR_DOMAIN_NET_TYPE_BRIDGE,
D
Daniel Veillard 已提交
373
    VIR_DOMAIN_NET_TYPE_INTERNAL,
374
    VIR_DOMAIN_NET_TYPE_DIRECT,
375 376 377 378

    VIR_DOMAIN_NET_TYPE_LAST,
};

379 380 381 382 383 384 385 386
/* the backend driver used for virtio interfaces */
enum virDomainNetBackendType {
    VIR_DOMAIN_NET_BACKEND_TYPE_DEFAULT, /* prefer kernel, fall back to user */
    VIR_DOMAIN_NET_BACKEND_TYPE_QEMU,    /* userland */
    VIR_DOMAIN_NET_BACKEND_TYPE_VHOST,   /* kernel */

    VIR_DOMAIN_NET_BACKEND_TYPE_LAST,
};
387

388 389 390 391 392 393 394 395 396
/* the TX algorithm used for virtio interfaces */
enum virDomainNetVirtioTxModeType {
    VIR_DOMAIN_NET_VIRTIO_TX_MODE_DEFAULT, /* default for this version of qemu */
    VIR_DOMAIN_NET_VIRTIO_TX_MODE_IOTHREAD,
    VIR_DOMAIN_NET_VIRTIO_TX_MODE_TIMER,

    VIR_DOMAIN_NET_VIRTIO_TX_MODE_LAST,
};

397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
/* Config that was actually used to bring up interface, after
 * resolving network reference. This is private data, only used within
 * libvirt, but still must maintain backward compatibility, because
 * different versions of libvirt may read the same data file.
 */
typedef struct _virDomainActualNetDef virDomainActualNetDef;
typedef virDomainActualNetDef *virDomainActualNetDefPtr;
struct _virDomainActualNetDef {
    int type; /* enum virDomainNetType */
    union {
        struct {
            char *brname;
        } bridge;
        struct {
            char *linkdev;
            int mode; /* enum virMacvtapMode from util/macvtap.h */
            virVirtualPortProfileParamsPtr virtPortProfile;
        } direct;
    } data;
416
    virBandwidthPtr bandwidth;
417 418
};

419 420 421 422
/* Stores the virtual network interface configuration */
typedef struct _virDomainNetDef virDomainNetDef;
typedef virDomainNetDef *virDomainNetDefPtr;
struct _virDomainNetDef {
S
Stefan Berger 已提交
423
    enum virDomainNetType type;
424
    unsigned char mac[VIR_MAC_BUFLEN];
425
    char *model;
426 427 428
    union {
        struct {
            enum virDomainNetBackendType name; /* which driver backend to use */
429
            enum virDomainNetVirtioTxModeType txmode;
430
            enum virDomainIoEventFd ioeventfd;
431
            enum virDomainVirtioEventIdx event_idx;
432 433
        } virtio;
    } driver;
434 435 436 437 438 439 440 441 442 443 444 445
    union {
        struct {
            char *dev;
            char *script;
            char *ipaddr;
        } ethernet;
        struct {
            char *address;
            int port;
        } socket; /* any of NET_CLIENT or NET_SERVER or NET_MCAST */
        struct {
            char *name;
446 447 448 449 450 451 452 453 454 455 456
            char *portgroup;
            virVirtualPortProfileParamsPtr virtPortProfile;
            /* actual has info about the currently used physical
             * device (if the network is of type
             * bridge/private/vepa/passthrough). This is saved in the
             * domain state, but never written to persistent config,
             * since it needs to be re-allocated whenever the domain
             * is restarted. It is also never shown to the user, and
             * the user cannot specify it in XML documents.
             */
            virDomainActualNetDefPtr actual;
457 458 459
        } network;
        struct {
            char *brname;
460
            char *script;
461
            char *ipaddr;
462
        } bridge;
D
Daniel Veillard 已提交
463 464 465
        struct {
            char *name;
        } internal;
466 467
        struct {
            char *linkdev;
468
            int mode; /* enum virMacvtapMode from util/macvtap.h */
469
            virVirtualPortProfileParamsPtr virtPortProfile;
470
        } direct;
471
    } data;
472 473 474 475
    struct {
        bool sndbuf_specified;
        unsigned long sndbuf;
    } tune;
476
    char *ifname;
477
    int bootIndex;
478
    virDomainDeviceInfo info;
479 480
    char *filter;
    virNWFilterHashTablePtr filterparams;
481
    virBandwidthPtr bandwidth;
482 483
};

E
Eric Blake 已提交
484 485 486 487
/* Used for prefix of ifname of any network name generated dynamically
 * by libvirt, and cannot be used for a persistent network name.  */
# define VIR_NET_GENERATED_PREFIX "vnet"

488
enum virDomainChrDeviceType {
489
    VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL = 0,
490 491
    VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL,
    VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE,
492
    VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL,
493

494 495 496 497 498 499 500 501
    VIR_DOMAIN_CHR_DEVICE_TYPE_LAST,
};

enum virDomainChrChannelTargetType {
    VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_GUESTFWD = 0,
    VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO,

    VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_LAST,
502 503
};

504 505 506 507
enum virDomainChrConsoleTargetType {
    VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL = 0,
    VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_XEN,
    VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_UML,
C
Cole Robinson 已提交
508
    VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO,
509 510 511 512

    VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_LAST,
};

513
enum virDomainChrType {
514 515 516 517 518 519 520 521 522 523
    VIR_DOMAIN_CHR_TYPE_NULL,
    VIR_DOMAIN_CHR_TYPE_VC,
    VIR_DOMAIN_CHR_TYPE_PTY,
    VIR_DOMAIN_CHR_TYPE_DEV,
    VIR_DOMAIN_CHR_TYPE_FILE,
    VIR_DOMAIN_CHR_TYPE_PIPE,
    VIR_DOMAIN_CHR_TYPE_STDIO,
    VIR_DOMAIN_CHR_TYPE_UDP,
    VIR_DOMAIN_CHR_TYPE_TCP,
    VIR_DOMAIN_CHR_TYPE_UNIX,
524
    VIR_DOMAIN_CHR_TYPE_SPICEVMC,
525 526 527 528 529 530 531

    VIR_DOMAIN_CHR_TYPE_LAST,
};

enum virDomainChrTcpProtocol {
    VIR_DOMAIN_CHR_TCP_PROTOCOL_RAW,
    VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET,
532 533
    VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNETS, /* secure telnet */
    VIR_DOMAIN_CHR_TCP_PROTOCOL_TLS,
534 535 536 537

    VIR_DOMAIN_CHR_TCP_PROTOCOL_LAST,
};

E
Eric Blake 已提交
538 539 540
enum virDomainChrSpicevmcName {
    VIR_DOMAIN_CHR_SPICEVMC_VDAGENT,
    VIR_DOMAIN_CHR_SPICEVMC_SMARTCARD,
541
    VIR_DOMAIN_CHR_SPICEVMC_USBREDIR,
E
Eric Blake 已提交
542 543 544 545

    VIR_DOMAIN_CHR_SPICEVMC_LAST,
};

546 547 548 549 550
/* The host side information for a character device.  */
typedef struct _virDomainChrSourceDef virDomainChrSourceDef;
typedef virDomainChrSourceDef *virDomainChrSourceDefPtr;
struct _virDomainChrSourceDef {
    int type; /* virDomainChrType */
551
    union {
E
Eric Blake 已提交
552
        /* no <source> for null, vc, stdio */
553 554 555 556 557 558
        struct {
            char *path;
        } file; /* pty, file, pipe, or device */
        struct {
            char *host;
            char *service;
559
            bool listen;
560 561 562 563 564 565 566 567 568 569
            int protocol;
        } tcp;
        struct {
            char *bindHost;
            char *bindService;
            char *connectHost;
            char *connectService;
        } udp;
        struct {
            char *path;
570
            bool listen;
571
        } nix;
E
Eric Blake 已提交
572
        int spicevmc;
573
    } data;
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
};

/* A complete character device, both host and domain views.  */
typedef struct _virDomainChrDef virDomainChrDef;
typedef virDomainChrDef *virDomainChrDefPtr;
struct _virDomainChrDef {
    int deviceType;
    int targetType;
    union {
        int port; /* parallel, serial, console */
        virSocketAddrPtr addr; /* guestfwd */
        char *name; /* virtio */
    } target;

    virDomainChrSourceDef source;
589 590

    virDomainDeviceInfo info;
591 592
};

E
Eric Blake 已提交
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
enum virDomainSmartcardType {
    VIR_DOMAIN_SMARTCARD_TYPE_HOST,
    VIR_DOMAIN_SMARTCARD_TYPE_HOST_CERTIFICATES,
    VIR_DOMAIN_SMARTCARD_TYPE_PASSTHROUGH,

    VIR_DOMAIN_SMARTCARD_TYPE_LAST,
};

# define VIR_DOMAIN_SMARTCARD_NUM_CERTIFICATES 3
# define VIR_DOMAIN_SMARTCARD_DEFAULT_DATABASE "/etc/pki/nssdb"

typedef struct _virDomainSmartcardDef virDomainSmartcardDef;
typedef virDomainSmartcardDef *virDomainSmartcardDefPtr;
struct _virDomainSmartcardDef {
    int type; /* virDomainSmartcardType */
    union {
        /* no extra data for 'host' */
        struct {
            char *file[VIR_DOMAIN_SMARTCARD_NUM_CERTIFICATES];
            char *database;
        } cert; /* 'host-certificates' */
        virDomainChrSourceDef passthru; /* 'passthrough' */
    } data;

    virDomainDeviceInfo info;
};

M
Marc-André Lureau 已提交
620 621 622 623 624 625 626
typedef struct _virDomainHubDef virDomainHubDef;
typedef virDomainHubDef *virDomainHubDefPtr;
struct _virDomainHubDef {
    int type;
    virDomainDeviceInfo info;
};

627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
enum virDomainInputType {
    VIR_DOMAIN_INPUT_TYPE_MOUSE,
    VIR_DOMAIN_INPUT_TYPE_TABLET,

    VIR_DOMAIN_INPUT_TYPE_LAST,
};

enum virDomainInputBus {
    VIR_DOMAIN_INPUT_BUS_PS2,
    VIR_DOMAIN_INPUT_BUS_USB,
    VIR_DOMAIN_INPUT_BUS_XEN,

    VIR_DOMAIN_INPUT_BUS_LAST
};

typedef struct _virDomainInputDef virDomainInputDef;
typedef virDomainInputDef *virDomainInputDefPtr;
struct _virDomainInputDef {
    int type;
    int bus;
647
    virDomainDeviceInfo info;
648 649 650 651 652 653
};

enum virDomainSoundModel {
    VIR_DOMAIN_SOUND_MODEL_SB16,
    VIR_DOMAIN_SOUND_MODEL_ES1370,
    VIR_DOMAIN_SOUND_MODEL_PCSPK,
D
Daniel P. Berrange 已提交
654
    VIR_DOMAIN_SOUND_MODEL_AC97,
655
    VIR_DOMAIN_SOUND_MODEL_ICH6,
656 657 658 659 660 661 662 663

    VIR_DOMAIN_SOUND_MODEL_LAST
};

typedef struct _virDomainSoundDef virDomainSoundDef;
typedef virDomainSoundDef *virDomainSoundDefPtr;
struct _virDomainSoundDef {
    int model;
664
    virDomainDeviceInfo info;
665 666
};

R
Richard Jones 已提交
667 668 669 670 671 672 673 674 675 676 677 678
enum virDomainWatchdogModel {
    VIR_DOMAIN_WATCHDOG_MODEL_I6300ESB,
    VIR_DOMAIN_WATCHDOG_MODEL_IB700,

    VIR_DOMAIN_WATCHDOG_MODEL_LAST
};

enum virDomainWatchdogAction {
    VIR_DOMAIN_WATCHDOG_ACTION_RESET,
    VIR_DOMAIN_WATCHDOG_ACTION_SHUTDOWN,
    VIR_DOMAIN_WATCHDOG_ACTION_POWEROFF,
    VIR_DOMAIN_WATCHDOG_ACTION_PAUSE,
H
Hu Tao 已提交
679
    VIR_DOMAIN_WATCHDOG_ACTION_DUMP,
R
Richard Jones 已提交
680 681 682 683 684 685 686 687 688 689
    VIR_DOMAIN_WATCHDOG_ACTION_NONE,

    VIR_DOMAIN_WATCHDOG_ACTION_LAST
};

typedef struct _virDomainWatchdogDef virDomainWatchdogDef;
typedef virDomainWatchdogDef *virDomainWatchdogDefPtr;
struct _virDomainWatchdogDef {
    int model;
    int action;
690
    virDomainDeviceInfo info;
R
Richard Jones 已提交
691 692
};

693 694 695 696 697 698 699

enum virDomainVideoType {
    VIR_DOMAIN_VIDEO_TYPE_VGA,
    VIR_DOMAIN_VIDEO_TYPE_CIRRUS,
    VIR_DOMAIN_VIDEO_TYPE_VMVGA,
    VIR_DOMAIN_VIDEO_TYPE_XEN,
    VIR_DOMAIN_VIDEO_TYPE_VBOX,
700
    VIR_DOMAIN_VIDEO_TYPE_QXL,
701 702 703 704 705

    VIR_DOMAIN_VIDEO_TYPE_LAST
};


706 707 708
typedef struct _virDomainVideoAccelDef virDomainVideoAccelDef;
typedef virDomainVideoAccelDef *virDomainVideoAccelDefPtr;
struct _virDomainVideoAccelDef {
709 710
    unsigned int support3d :1;
    unsigned int support2d :1;
711 712 713
};


714 715 716 717 718 719
typedef struct _virDomainVideoDef virDomainVideoDef;
typedef virDomainVideoDef *virDomainVideoDefPtr;
struct _virDomainVideoDef {
    int type;
    unsigned int vram;
    unsigned int heads;
720
    virDomainVideoAccelDefPtr accel;
721
    virDomainDeviceInfo info;
722 723
};

724 725 726 727
/* 3 possible graphics console modes */
enum virDomainGraphicsType {
    VIR_DOMAIN_GRAPHICS_TYPE_SDL,
    VIR_DOMAIN_GRAPHICS_TYPE_VNC,
728 729
    VIR_DOMAIN_GRAPHICS_TYPE_RDP,
    VIR_DOMAIN_GRAPHICS_TYPE_DESKTOP,
730
    VIR_DOMAIN_GRAPHICS_TYPE_SPICE,
731 732 733 734

    VIR_DOMAIN_GRAPHICS_TYPE_LAST,
};

735 736 737 738 739 740 741 742 743
enum virDomainGraphicsAuthConnectedType {
    VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_FAIL,
    VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_DISCONNECT,
    VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_KEEP,

    VIR_DOMAIN_GRAPHICS_AUTH_CONNECTED_LAST
};

744 745 746 747 748 749
typedef struct _virDomainGraphicsAuthDef virDomainGraphicsAuthDef;
typedef virDomainGraphicsAuthDef *virDomainGraphicsAuthDefPtr;
struct _virDomainGraphicsAuthDef {
    char *passwd;
    unsigned int expires: 1; /* Whether there is an expiry time set */
    time_t validTo;  /* seconds since epoch */
750
    int connected; /* action if connected */
751 752
};

753 754 755 756 757 758 759
enum virDomainGraphicsSpiceChannelName {
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MAIN,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_DISPLAY,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_INPUT,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_CURSOR,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_PLAYBACK,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_RECORD,
E
Eric Blake 已提交
760
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_SMARTCARD,
761 762 763 764 765 766 767 768 769 770 771

    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST
};

enum virDomainGraphicsSpiceChannelMode {
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_ANY,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_SECURE,
    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_INSECURE,

    VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_MODE_LAST
};
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
enum virDomainGraphicsSpiceImageCompression {
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_AUTO_GLZ,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_AUTO_LZ,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_QUIC,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_GLZ,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_LZ,
    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_OFF,

    VIR_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_LAST
};

enum virDomainGraphicsSpiceJpegCompression {
    VIR_DOMAIN_GRAPHICS_SPICE_JPEG_COMPRESSION_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_JPEG_COMPRESSION_AUTO,
    VIR_DOMAIN_GRAPHICS_SPICE_JPEG_COMPRESSION_NEVER,
    VIR_DOMAIN_GRAPHICS_SPICE_JPEG_COMPRESSION_ALWAYS,

    VIR_DOMAIN_GRAPHICS_SPICE_JPEG_COMPRESSION_LAST
};

enum virDomainGraphicsSpiceZlibCompression {
    VIR_DOMAIN_GRAPHICS_SPICE_ZLIB_COMPRESSION_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_ZLIB_COMPRESSION_AUTO,
    VIR_DOMAIN_GRAPHICS_SPICE_ZLIB_COMPRESSION_NEVER,
    VIR_DOMAIN_GRAPHICS_SPICE_ZLIB_COMPRESSION_ALWAYS,

    VIR_DOMAIN_GRAPHICS_SPICE_ZLIB_COMPRESSION_LAST
};

enum virDomainGraphicsSpicePlaybackCompression {
    VIR_DOMAIN_GRAPHICS_SPICE_PLAYBACK_COMPRESSION_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_PLAYBACK_COMPRESSION_ON,
    VIR_DOMAIN_GRAPHICS_SPICE_PLAYBACK_COMPRESSION_OFF,

    VIR_DOMAIN_GRAPHICS_SPICE_PLAYBACK_COMPRESSION_LAST
};

811 812 813 814 815 816 817 818 819
enum virDomainGraphicsSpiceStreamingMode {
    VIR_DOMAIN_GRAPHICS_SPICE_STREAMING_MODE_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_STREAMING_MODE_FILTER,
    VIR_DOMAIN_GRAPHICS_SPICE_STREAMING_MODE_ALL,
    VIR_DOMAIN_GRAPHICS_SPICE_STREAMING_MODE_OFF,

    VIR_DOMAIN_GRAPHICS_SPICE_STREAMING_MODE_LAST
};

820 821 822 823 824 825 826 827
enum virDomainGraphicsSpiceClipboardCopypaste {
    VIR_DOMAIN_GRAPHICS_SPICE_CLIPBOARD_COPYPASTE_DEFAULT = 0,
    VIR_DOMAIN_GRAPHICS_SPICE_CLIPBOARD_COPYPASTE_YES,
    VIR_DOMAIN_GRAPHICS_SPICE_CLIPBOARD_COPYPASTE_NO,

    VIR_DOMAIN_GRAPHICS_SPICE_CLIPBOARD_COPYPASTE_LAST
};

828 829 830 831 832 833 834 835
enum virDomainGraphicsListenType {
    VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NONE = 0,
    VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_ADDRESS,
    VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_NETWORK,

    VIR_DOMAIN_GRAPHICS_LISTEN_TYPE_LAST,
};

M
Marc-André Lureau 已提交
836 837 838 839 840 841
enum virDomainHubType {
    VIR_DOMAIN_HUB_TYPE_USB,

    VIR_DOMAIN_HUB_TYPE_LAST,
};

842 843 844 845 846 847 848 849
typedef struct _virDomainGraphicsListenDef virDomainGraphicsListenDef;
typedef virDomainGraphicsListenDef *virDomainGraphicsListenDefPtr;
struct _virDomainGraphicsListenDef {
    int type;   /* enum virDomainGraphicsListenType */
    char *address;
    char *network;
};

850 851 852 853 854 855 856
typedef struct _virDomainGraphicsDef virDomainGraphicsDef;
typedef virDomainGraphicsDef *virDomainGraphicsDefPtr;
struct _virDomainGraphicsDef {
    int type;
    union {
        struct {
            int port;
857
            unsigned int autoport :1;
858
            char *keymap;
859
            char *socket;
860
            virDomainGraphicsAuthDef auth;
861 862 863 864
        } vnc;
        struct {
            char *display;
            char *xauth;
865
            int fullscreen;
866
        } sdl;
867 868
        struct {
            int port;
869 870 871
            unsigned int autoport :1;
            unsigned int replaceUser :1;
            unsigned int multiUser :1;
872 873 874
        } rdp;
        struct {
            char *display;
875
            unsigned int fullscreen :1;
876
        } desktop;
877 878 879 880
        struct {
            int port;
            int tlsPort;
            char *keymap;
881
            virDomainGraphicsAuthDef auth;
882
            unsigned int autoport :1;
883
            int channels[VIR_DOMAIN_GRAPHICS_SPICE_CHANNEL_LAST];
884 885 886 887
            int image;
            int jpeg;
            int zlib;
            int playback;
888
            int streaming;
889
            int copypaste;
890
        } spice;
891
    } data;
892 893 894 895 896
    /* nListens, listens, and *port are only useful if type is vnc,
     * rdp, or spice. They've been extracted from the union only to
     * simplify parsing code.*/
    size_t nListens;
    virDomainGraphicsListenDefPtr listens;
897 898
};

899 900 901
enum virDomainHostdevMode {
    VIR_DOMAIN_HOSTDEV_MODE_SUBSYS,
    VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES,
902

903 904 905 906 907 908 909 910 911 912 913 914 915 916
    VIR_DOMAIN_HOSTDEV_MODE_LAST,
};

enum virDomainHostdevSubsysType {
    VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_USB,
    VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI,

    VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_LAST
};

typedef struct _virDomainHostdevDef virDomainHostdevDef;
typedef virDomainHostdevDef *virDomainHostdevDefPtr;
struct _virDomainHostdevDef {
    int mode; /* enum virDomainHostdevMode */
917
    unsigned int managed : 1;
918 919 920 921 922 923 924 925 926 927 928
    union {
        struct {
            int type; /* enum virDomainHostdevBusType */
            union {
                struct {
                    unsigned bus;
                    unsigned device;

                    unsigned vendor;
                    unsigned product;
                } usb;
929
                virDomainDevicePCIAddress pci; /* host address */
930
            } u;
931 932 933 934 935
        } subsys;
        struct {
            /* TBD: struct capabilities see:
             * https://www.redhat.com/archives/libvir-list/2008-July/msg00429.html
             */
936
            int dummy;
937 938
        } caps;
    } source;
939
    int bootIndex;
940
    virDomainDeviceInfo info; /* Guest address */
941
};
942

943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
enum virDomainRedirdevBus {
    VIR_DOMAIN_REDIRDEV_BUS_USB,

    VIR_DOMAIN_REDIRDEV_BUS_LAST
};

typedef struct _virDomainRedirdevDef virDomainRedirdevDef;
typedef virDomainRedirdevDef *virDomainRedirdevDefPtr;
struct _virDomainRedirdevDef {
    int bus; /* enum virDomainRedirdevBus */

    union {
        virDomainChrSourceDef chr;
    } source;

    virDomainDeviceInfo info; /* Guest address */
};
960 961 962 963

enum {
    VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO,
    VIR_DOMAIN_MEMBALLOON_MODEL_XEN,
964
    VIR_DOMAIN_MEMBALLOON_MODEL_NONE,
965 966 967 968 969 970 971 972 973 974 975 976

    VIR_DOMAIN_MEMBALLOON_MODEL_LAST
};

typedef struct _virDomainMemballoonDef virDomainMemballoonDef;
typedef virDomainMemballoonDef *virDomainMemballoonDefPtr;
struct _virDomainMemballoonDef {
    int model;
    virDomainDeviceInfo info;
};


977 978 979 980 981 982 983 984 985
enum virDomainSmbiosMode {
    VIR_DOMAIN_SMBIOS_NONE,
    VIR_DOMAIN_SMBIOS_EMULATE,
    VIR_DOMAIN_SMBIOS_HOST,
    VIR_DOMAIN_SMBIOS_SYSINFO,

    VIR_DOMAIN_SMBIOS_LAST
};

986 987 988
/* Flags for the 'type' field in next struct */
enum virDomainDeviceType {
    VIR_DOMAIN_DEVICE_DISK,
989
    VIR_DOMAIN_DEVICE_LEASE,
990
    VIR_DOMAIN_DEVICE_FS,
991 992 993
    VIR_DOMAIN_DEVICE_NET,
    VIR_DOMAIN_DEVICE_INPUT,
    VIR_DOMAIN_DEVICE_SOUND,
994
    VIR_DOMAIN_DEVICE_VIDEO,
995
    VIR_DOMAIN_DEVICE_HOSTDEV,
R
Richard Jones 已提交
996
    VIR_DOMAIN_DEVICE_WATCHDOG,
997
    VIR_DOMAIN_DEVICE_CONTROLLER,
998
    VIR_DOMAIN_DEVICE_GRAPHICS,
M
Marc-André Lureau 已提交
999
    VIR_DOMAIN_DEVICE_HUB,
1000
    VIR_DOMAIN_DEVICE_REDIRDEV,
1001 1002

    VIR_DOMAIN_DEVICE_LAST,
1003 1004 1005 1006 1007 1008 1009 1010
};

typedef struct _virDomainDeviceDef virDomainDeviceDef;
typedef virDomainDeviceDef *virDomainDeviceDefPtr;
struct _virDomainDeviceDef {
    int type;
    union {
        virDomainDiskDefPtr disk;
1011
        virDomainControllerDefPtr controller;
1012
        virDomainLeaseDefPtr lease;
1013
        virDomainFSDefPtr fs;
1014 1015 1016
        virDomainNetDefPtr net;
        virDomainInputDefPtr input;
        virDomainSoundDefPtr sound;
1017
        virDomainVideoDefPtr video;
1018
        virDomainHostdevDefPtr hostdev;
R
Richard Jones 已提交
1019
        virDomainWatchdogDefPtr watchdog;
1020
        virDomainGraphicsDefPtr graphics;
M
Marc-André Lureau 已提交
1021
        virDomainHubDefPtr hub;
1022
        virDomainRedirdevDefPtr redirdev;
1023 1024 1025 1026
    } data;
};


1027
# define VIR_DOMAIN_MAX_BOOT_DEVS 4
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037

enum virDomainBootOrder {
    VIR_DOMAIN_BOOT_FLOPPY,
    VIR_DOMAIN_BOOT_CDROM,
    VIR_DOMAIN_BOOT_DISK,
    VIR_DOMAIN_BOOT_NET,

    VIR_DOMAIN_BOOT_LAST,
};

1038 1039 1040 1041 1042 1043
enum virDomainBootMenu {
    VIR_DOMAIN_BOOT_MENU_DEFAULT = 0,
    VIR_DOMAIN_BOOT_MENU_ENABLED,
    VIR_DOMAIN_BOOT_MENU_DISABLED,
};

1044 1045 1046 1047
enum virDomainFeature {
    VIR_DOMAIN_FEATURE_ACPI,
    VIR_DOMAIN_FEATURE_APIC,
    VIR_DOMAIN_FEATURE_PAE,
J
Jim Fehlig 已提交
1048
    VIR_DOMAIN_FEATURE_HAP,
1049
    VIR_DOMAIN_FEATURE_VIRIDIAN,
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062

    VIR_DOMAIN_FEATURE_LAST
};

enum virDomainLifecycleAction {
    VIR_DOMAIN_LIFECYCLE_DESTROY,
    VIR_DOMAIN_LIFECYCLE_RESTART,
    VIR_DOMAIN_LIFECYCLE_RESTART_RENAME,
    VIR_DOMAIN_LIFECYCLE_PRESERVE,

    VIR_DOMAIN_LIFECYCLE_LAST
};

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
enum virDomainLifecycleCrashAction {
    VIR_DOMAIN_LIFECYCLE_CRASH_DESTROY,
    VIR_DOMAIN_LIFECYCLE_CRASH_RESTART,
    VIR_DOMAIN_LIFECYCLE_CRASH_RESTART_RENAME,
    VIR_DOMAIN_LIFECYCLE_CRASH_PRESERVE,
    VIR_DOMAIN_LIFECYCLE_CRASH_COREDUMP_DESTROY,
    VIR_DOMAIN_LIFECYCLE_CRASH_COREDUMP_RESTART,

    VIR_DOMAIN_LIFECYCLE_CRASH_LAST
};

M
Michal Privoznik 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
enum virDomainBIOSUseserial {
    VIR_DOMAIN_BIOS_USESERIAL_DEFAULT = 0,
    VIR_DOMAIN_BIOS_USESERIAL_YES,
    VIR_DOMAIN_BIOS_USESERIAL_NO
};

typedef struct _virDomainBIOSDef virDomainBIOSDef;
typedef virDomainBIOSDef *virDomainBIOSDefPtr;
struct _virDomainBIOSDef {
    int useserial;
};

1086 1087 1088 1089 1090 1091 1092 1093 1094
/* Operating system configuration data & machine / arch */
typedef struct _virDomainOSDef virDomainOSDef;
typedef virDomainOSDef *virDomainOSDefPtr;
struct _virDomainOSDef {
    char *type;
    char *arch;
    char *machine;
    int nBootDevs;
    int bootDevs[VIR_DOMAIN_BOOT_LAST];
1095
    int bootmenu;
1096
    char *init;
1097 1098 1099 1100 1101 1102 1103
    char *kernel;
    char *initrd;
    char *cmdline;
    char *root;
    char *loader;
    char *bootloader;
    char *bootloaderArgs;
1104
    int smbios_mode;
M
Michal Privoznik 已提交
1105
    virDomainBIOSDef bios;
1106 1107
};

1108 1109 1110 1111 1112 1113 1114
enum virDomainSeclabelType {
    VIR_DOMAIN_SECLABEL_DYNAMIC,
    VIR_DOMAIN_SECLABEL_STATIC,

    VIR_DOMAIN_SECLABEL_LAST,
};

1115 1116 1117 1118 1119 1120 1121
/* Security configuration for domain */
typedef struct _virSecurityLabelDef virSecurityLabelDef;
typedef virSecurityLabelDef *virSecurityLabelDefPtr;
struct _virSecurityLabelDef {
    char *model;        /* name of security model */
    char *label;        /* security label string */
    char *imagelabel;   /* security image label string */
1122
    char *baselabel;    /* base name of label string */
1123
    int type;           /* virDomainSeclabelType */
1124
    bool norelabel;
1125 1126
};

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
enum virDomainTimerNameType {
    VIR_DOMAIN_TIMER_NAME_PLATFORM = 0,
    VIR_DOMAIN_TIMER_NAME_PIT,
    VIR_DOMAIN_TIMER_NAME_RTC,
    VIR_DOMAIN_TIMER_NAME_HPET,
    VIR_DOMAIN_TIMER_NAME_TSC,

    VIR_DOMAIN_TIMER_NAME_LAST,
};

1137 1138 1139 1140
enum virDomainTimerTrackType {
    VIR_DOMAIN_TIMER_TRACK_BOOT = 0,
    VIR_DOMAIN_TIMER_TRACK_GUEST,
    VIR_DOMAIN_TIMER_TRACK_WALL,
1141

1142
    VIR_DOMAIN_TIMER_TRACK_LAST,
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
};

enum virDomainTimerTickpolicyType {
    VIR_DOMAIN_TIMER_TICKPOLICY_DELAY = 0,
    VIR_DOMAIN_TIMER_TICKPOLICY_CATCHUP,
    VIR_DOMAIN_TIMER_TICKPOLICY_MERGE,
    VIR_DOMAIN_TIMER_TICKPOLICY_DISCARD,

    VIR_DOMAIN_TIMER_TICKPOLICY_LAST,
};

enum virDomainTimerModeType {
    VIR_DOMAIN_TIMER_MODE_AUTO = 0,
    VIR_DOMAIN_TIMER_MODE_NATIVE,
    VIR_DOMAIN_TIMER_MODE_EMULATE,
    VIR_DOMAIN_TIMER_MODE_PARAVIRT,
1159
    VIR_DOMAIN_TIMER_MODE_SMPSAFE,
1160 1161 1162 1163

    VIR_DOMAIN_TIMER_MODE_LAST,
};

1164 1165 1166 1167 1168 1169 1170 1171
typedef struct _virDomainTimerCatchupDef virDomainTimerCatchupDef;
typedef virDomainTimerCatchupDef *virDomainTimerCatchupDefPtr;
struct _virDomainTimerCatchupDef {
    unsigned long threshold;
    unsigned long slew;
    unsigned long limit;
};

1172 1173 1174 1175 1176 1177 1178
typedef struct _virDomainTimerDef virDomainTimerDef;
typedef virDomainTimerDef *virDomainTimerDefPtr;
struct _virDomainTimerDef {
    int name;
    int present;    /* unspecified = -1, no = 0, yes = 1 */
    int tickpolicy; /* none|catchup|merge|discard */

1179 1180 1181 1182
    virDomainTimerCatchupDef catchup;

    /* track is only valid for name='platform|rtc' */
    int track;  /* host|guest */
1183 1184 1185 1186 1187 1188

    /* frequency & mode are only valid for name='tsc' */
    unsigned long frequency; /* in Hz, unspecified = 0 */
    int mode;       /* auto|native|emulate|paravirt */
};

1189 1190 1191
enum virDomainClockOffsetType {
    VIR_DOMAIN_CLOCK_OFFSET_UTC = 0,
    VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME = 1,
1192
    VIR_DOMAIN_CLOCK_OFFSET_VARIABLE = 2,
1193
    VIR_DOMAIN_CLOCK_OFFSET_TIMEZONE = 3,
1194 1195 1196 1197 1198 1199 1200 1201

    VIR_DOMAIN_CLOCK_OFFSET_LAST,
};

typedef struct _virDomainClockDef virDomainClockDef;
typedef virDomainClockDef *virDomainClockDefPtr;
struct _virDomainClockDef {
    int offset;
1202

1203 1204 1205 1206 1207 1208 1209 1210 1211
    union {
        /* Adjustment in seconds, relative to UTC, when
         * offset == VIR_DOMAIN_CLOCK_OFFSET_VARIABLE */
        long long adjustment;

        /* Timezone name, when
         * offset == VIR_DOMAIN_CLOCK_OFFSET_LOCALTIME */
        char *timezone;
    } data;
1212 1213 1214

    int ntimers;
    virDomainTimerDefPtr *timers;
1215 1216
};

1217
# define VIR_DOMAIN_CPUMASK_LEN 1024
1218

E
Eric Blake 已提交
1219 1220 1221
typedef struct _virDomainVcpuPinDef virDomainVcpuPinDef;
typedef virDomainVcpuPinDef *virDomainVcpuPinDefPtr;
struct _virDomainVcpuPinDef {
1222 1223 1224 1225
    int vcpuid;
    char *cpumask;
};

E
Eric Blake 已提交
1226
int virDomainVcpuPinIsDuplicate(virDomainVcpuPinDefPtr *def,
1227 1228 1229
                                int nvcpupin,
                                int vcpu);

E
Eric Blake 已提交
1230
virDomainVcpuPinDefPtr virDomainVcpuPinFindByVcpu(virDomainVcpuPinDefPtr *def,
1231 1232 1233
                                                  int nvcpupin,
                                                  int vcpu);

1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
enum virDomainNumatuneMemMode {
    VIR_DOMAIN_NUMATUNE_MEM_STRICT,
    VIR_DOMAIN_NUMATUNE_MEM_PREFERRED,
    VIR_DOMAIN_NUMATUNE_MEM_INTERLEAVE,

    VIR_DOMAIN_NUMATUNE_MEM_LAST
};

typedef struct _virDomainNumatuneDef virDomainNumatuneDef;
typedef virDomainNumatuneDef *virDomainNumatuneDefPtr;
struct _virDomainNumatuneDef {
    struct {
        char *nodemask;
        int mode;
    } memory;

    /* Future NUMA tuning related stuff should go here. */
};

1253 1254 1255 1256 1257 1258
/*
 * Guest VM main configuration
 *
 * NB: if adding to this struct, virDomainDefCheckABIStability
 * may well need an update
 */
1259 1260 1261 1262 1263 1264 1265
typedef struct _virDomainDef virDomainDef;
typedef virDomainDef *virDomainDefPtr;
struct _virDomainDef {
    int virtType;
    int id;
    unsigned char uuid[VIR_UUID_BUFLEN];
    char *name;
1266
    char *description;
1267

1268 1269 1270 1271
    struct {
        unsigned int weight;
    } blkio;

1272 1273 1274 1275 1276 1277 1278 1279 1280
    struct {
        unsigned long max_balloon;
        unsigned long cur_balloon;
        unsigned long hugepage_backed;
        unsigned long hard_limit;
        unsigned long soft_limit;
        unsigned long min_guarantee;
        unsigned long swap_hard_limit;
    } mem;
E
Eric Blake 已提交
1281 1282
    unsigned short vcpus;
    unsigned short maxvcpus;
1283 1284 1285
    int cpumasklen;
    char *cpumask;

1286 1287
    struct {
        unsigned long shares;
1288 1289
        unsigned long long period;
        long long quota;
1290
        int nvcpupin;
E
Eric Blake 已提交
1291
        virDomainVcpuPinDefPtr *vcpupin;
1292 1293
    } cputune;

1294 1295
    virDomainNumatuneDef numatune;

1296 1297 1298 1299 1300 1301 1302 1303 1304
    /* These 3 are based on virDomainLifeCycleAction enum flags */
    int onReboot;
    int onPoweroff;
    int onCrash;

    virDomainOSDef os;
    char *emulator;
    int features;

1305
    virDomainClockDef clock;
1306

1307 1308
    int ngraphics;
    virDomainGraphicsDefPtr *graphics;
1309 1310 1311 1312

    int ndisks;
    virDomainDiskDefPtr *disks;

1313 1314 1315
    int ncontrollers;
    virDomainControllerDefPtr *controllers;

1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
    int nfss;
    virDomainFSDefPtr *fss;

    int nnets;
    virDomainNetDefPtr *nets;

    int ninputs;
    virDomainInputDefPtr *inputs;

    int nsounds;
    virDomainSoundDefPtr *sounds;

1328 1329 1330
    int nvideos;
    virDomainVideoDefPtr *videos;

1331 1332 1333
    int nhostdevs;
    virDomainHostdevDefPtr *hostdevs;

1334 1335 1336
    int nredirdevs;
    virDomainRedirdevDefPtr *redirdevs;

E
Eric Blake 已提交
1337 1338 1339
    int nsmartcards;
    virDomainSmartcardDefPtr *smartcards;

1340 1341 1342 1343 1344 1345
    int nserials;
    virDomainChrDefPtr *serials;

    int nparallels;
    virDomainChrDefPtr *parallels;

1346 1347 1348
    int nchannels;
    virDomainChrDefPtr *channels;

1349
    size_t nleases;
1350 1351
    virDomainLeaseDefPtr *leases;

M
Marc-André Lureau 已提交
1352 1353 1354
    int nhubs;
    virDomainHubDefPtr *hubs;

1355
    /* Only 1 */
1356
    virDomainChrDefPtr console;
1357
    virSecurityLabelDef seclabel;
R
Richard Jones 已提交
1358
    virDomainWatchdogDefPtr watchdog;
1359
    virDomainMemballoonDefPtr memballoon;
1360
    virCPUDefPtr cpu;
1361
    virSysinfoDefPtr sysinfo;
1362 1363 1364

    void *namespaceData;
    virDomainXMLNamespace ns;
1365 1366
};

1367 1368 1369 1370 1371 1372
enum virDomainTaintFlags {
    VIR_DOMAIN_TAINT_CUSTOM_ARGV,      /* Custom ARGV passthrough from XML */
    VIR_DOMAIN_TAINT_CUSTOM_MONITOR,   /* Custom monitor commands issued */
    VIR_DOMAIN_TAINT_HIGH_PRIVILEGES,  /* Running with undesirably high privileges */
    VIR_DOMAIN_TAINT_SHELL_SCRIPTS,    /* Network configuration using opaque shell scripts */
    VIR_DOMAIN_TAINT_DISK_PROBING,     /* Relying on potentially unsafe disk format probing */
1373
    VIR_DOMAIN_TAINT_EXTERNAL_LAUNCH,  /* Externally launched guest domain */
1374 1375 1376 1377

    VIR_DOMAIN_TAINT_LAST
};

1378 1379 1380 1381
/* Snapshot state */
typedef struct _virDomainSnapshotDef virDomainSnapshotDef;
typedef virDomainSnapshotDef *virDomainSnapshotDefPtr;
struct _virDomainSnapshotDef {
1382
    /* Public XML.  */
1383 1384 1385 1386 1387
    char *name;
    char *description;
    char *parent;
    long long creationTime; /* in seconds */
    int state;
1388
    virDomainDefPtr dom;
1389

1390 1391
    /* Internal use.  */
    bool current; /* At most one snapshot in the list should have this set */
1392 1393 1394 1395 1396 1397
};

typedef struct _virDomainSnapshotObj virDomainSnapshotObj;
typedef virDomainSnapshotObj *virDomainSnapshotObjPtr;
struct _virDomainSnapshotObj {
    virDomainSnapshotDefPtr def;
1398 1399 1400

    /* Internal use only */
    int mark; /* Used in identifying descendents. */
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
};

typedef struct _virDomainSnapshotObjList virDomainSnapshotObjList;
typedef virDomainSnapshotObjList *virDomainSnapshotObjListPtr;
struct _virDomainSnapshotObjList {
    /* name string -> virDomainSnapshotObj  mapping
     * for O(1), lockless lookup-by-name */
    virHashTable *objs;
};

1411 1412 1413 1414 1415
typedef enum {
    VIR_DOMAIN_SNAPSHOT_PARSE_REDEFINE = 1 << 0,
    VIR_DOMAIN_SNAPSHOT_PARSE_INTERNAL = 1 << 1,
} virDomainSnapshotParseFlags;

1416
virDomainSnapshotDefPtr virDomainSnapshotDefParseString(const char *xmlStr,
1417 1418
                                                        virCapsPtr caps,
                                                        unsigned int expectedVirtTypes,
1419
                                                        unsigned int flags);
1420 1421 1422
void virDomainSnapshotDefFree(virDomainSnapshotDefPtr def);
char *virDomainSnapshotDefFormat(char *domain_uuid,
                                 virDomainSnapshotDefPtr def,
1423
                                 unsigned int flags,
1424 1425 1426 1427 1428 1429
                                 int internal);
virDomainSnapshotObjPtr virDomainSnapshotAssignDef(virDomainSnapshotObjListPtr snapshots,
                                                   const virDomainSnapshotDefPtr def);

int virDomainSnapshotObjListInit(virDomainSnapshotObjListPtr objs);
int virDomainSnapshotObjListGetNames(virDomainSnapshotObjListPtr snapshots,
1430 1431 1432 1433
                                     char **const names, int maxnames,
                                     unsigned int flags);
int virDomainSnapshotObjListNum(virDomainSnapshotObjListPtr snapshots,
                                unsigned int flags);
1434 1435 1436 1437 1438 1439
virDomainSnapshotObjPtr virDomainSnapshotFindByName(const virDomainSnapshotObjListPtr snapshots,
                                                    const char *name);
void virDomainSnapshotObjListRemove(virDomainSnapshotObjListPtr snapshots,
                                    virDomainSnapshotObjPtr snapshot);
int virDomainSnapshotHasChildren(virDomainSnapshotObjPtr snap,
                                virDomainSnapshotObjListPtr snapshots);
1440 1441 1442 1443
int virDomainSnapshotForEachChild(virDomainSnapshotObjListPtr snapshots,
                                  virDomainSnapshotObjPtr snapshot,
                                  virHashIterator iter,
                                  void *data);
1444 1445 1446 1447
int virDomainSnapshotForEachDescendant(virDomainSnapshotObjListPtr snapshots,
                                       virDomainSnapshotObjPtr snapshot,
                                       virHashIterator iter,
                                       void *data);
1448

1449
/* Guest VM runtime state */
J
Jiri Denemark 已提交
1450 1451 1452 1453 1454 1455
typedef struct _virDomainStateReason virDomainStateReason;
struct _virDomainStateReason {
    int state;
    int reason;
};

1456 1457 1458
typedef struct _virDomainObj virDomainObj;
typedef virDomainObj *virDomainObjPtr;
struct _virDomainObj {
1459
    virMutex lock;
1460
    int refs;
1461

1462
    int pid;
J
Jiri Denemark 已提交
1463
    virDomainStateReason state;
1464 1465 1466

    unsigned int autostart : 1;
    unsigned int persistent : 1;
1467
    unsigned int updated : 1;
1468 1469 1470

    virDomainDefPtr def; /* The current definition */
    virDomainDefPtr newDef; /* New definition to activate at shutdown */
1471

C
Chris Lalancette 已提交
1472 1473 1474
    virDomainSnapshotObjList snapshots;
    virDomainSnapshotObjPtr current_snapshot;

1475 1476
    void *privateData;
    void (*privateDataFreeFunc)(void *);
1477 1478

    int taint;
1479 1480
};

1481 1482 1483
typedef struct _virDomainObjList virDomainObjList;
typedef virDomainObjList *virDomainObjListPtr;
struct _virDomainObjList {
1484 1485 1486
    /* uuid string -> virDomainObj  mapping
     * for O(1), lockless lookup-by-uuid */
    virHashTable *objs;
1487
};
1488

1489
static inline bool
D
Daniel P. Berrange 已提交
1490
virDomainObjIsActive(virDomainObjPtr dom)
1491 1492 1493 1494
{
    return dom->def->id != -1;
}

1495

1496 1497
int virDomainObjListInit(virDomainObjListPtr objs);
void virDomainObjListDeinit(virDomainObjListPtr objs);
1498

1499
virDomainObjPtr virDomainFindByID(const virDomainObjListPtr doms,
1500
                                  int id);
1501
virDomainObjPtr virDomainFindByUUID(const virDomainObjListPtr doms,
1502
                                    const unsigned char *uuid);
1503
virDomainObjPtr virDomainFindByName(const virDomainObjListPtr doms,
1504 1505
                                    const char *name);

1506 1507
bool virDomainObjTaint(virDomainObjPtr obj,
                       enum virDomainTaintFlags taint);
1508 1509 1510 1511

void virDomainGraphicsDefFree(virDomainGraphicsDefPtr def);
void virDomainInputDefFree(virDomainInputDefPtr def);
void virDomainDiskDefFree(virDomainDiskDefPtr def);
1512
void virDomainDiskHostDefFree(virDomainDiskHostDefPtr def);
1513
void virDomainControllerDefFree(virDomainControllerDefPtr def);
1514
void virDomainFSDefFree(virDomainFSDefPtr def);
1515
void virDomainActualNetDefFree(virDomainActualNetDefPtr def);
1516
void virDomainNetDefFree(virDomainNetDefPtr def);
E
Eric Blake 已提交
1517
void virDomainSmartcardDefFree(virDomainSmartcardDefPtr def);
1518
void virDomainChrDefFree(virDomainChrDefPtr def);
1519
void virDomainChrSourceDefFree(virDomainChrSourceDefPtr def);
1520
void virDomainSoundDefFree(virDomainSoundDefPtr def);
1521
void virDomainMemballoonDefFree(virDomainMemballoonDefPtr def);
R
Richard Jones 已提交
1522
void virDomainWatchdogDefFree(virDomainWatchdogDefPtr def);
1523
void virDomainVideoDefFree(virDomainVideoDefPtr def);
1524
void virDomainHostdevDefFree(virDomainHostdevDefPtr def);
M
Marc-André Lureau 已提交
1525
void virDomainHubDefFree(virDomainHubDefPtr def);
1526
void virDomainRedirdevDefFree(virDomainRedirdevDefPtr def);
1527
void virDomainDeviceDefFree(virDomainDeviceDefPtr def);
1528 1529 1530
int virDomainDeviceAddressIsValid(virDomainDeviceInfoPtr info,
                                  int type);
int virDomainDevicePCIAddressIsValid(virDomainDevicePCIAddressPtr addr);
1531
int virDomainDeviceDriveAddressIsValid(virDomainDeviceDriveAddressPtr addr);
1532
int virDomainDeviceVirtioSerialAddressIsValid(virDomainDeviceVirtioSerialAddressPtr addr);
1533
int virDomainDeviceUSBAddressIsValid(virDomainDeviceUSBAddressPtr addr);
1534
void virDomainDeviceInfoClear(virDomainDeviceInfoPtr info);
1535
void virDomainDefClearPCIAddresses(virDomainDefPtr def);
D
Daniel P. Berrange 已提交
1536
void virDomainDefClearDeviceAliases(virDomainDefPtr def);
1537

1538 1539 1540 1541 1542 1543 1544 1545
typedef int (*virDomainDeviceInfoCallback)(virDomainDefPtr def,
                                           virDomainDeviceInfoPtr dev,
                                           void *opaque);

int virDomainDeviceInfoIterate(virDomainDefPtr def,
                               virDomainDeviceInfoCallback cb,
                               void *opaque);

1546
void virDomainDefFree(virDomainDefPtr vm);
1547 1548
void virDomainObjRef(virDomainObjPtr vm);
/* Returns 1 if the object was freed, 0 if more refs exist */
1549
int virDomainObjUnref(virDomainObjPtr vm) ATTRIBUTE_RETURN_CHECK;
1550

M
Michal Novotny 已提交
1551 1552
virDomainChrDefPtr virDomainChrDefNew(void);

1553 1554
/* live == true means def describes an active domain (being migrated or
 * restored) as opposed to a new persistent configuration of the domain */
1555
virDomainObjPtr virDomainAssignDef(virCapsPtr caps,
1556
                                   virDomainObjListPtr doms,
1557 1558
                                   const virDomainDefPtr def,
                                   bool live);
1559 1560 1561
void virDomainObjAssignDef(virDomainObjPtr domain,
                           const virDomainDefPtr def,
                           bool live);
1562
int virDomainObjSetDefTransient(virCapsPtr caps,
1563 1564
                                virDomainObjPtr domain,
                                bool live);
1565 1566 1567
virDomainDefPtr
virDomainObjGetPersistentDef(virCapsPtr caps,
                             virDomainObjPtr domain);
1568 1569 1570
virDomainDefPtr
virDomainObjCopyPersistentDef(virCapsPtr caps, virDomainObjPtr dom);

1571
void virDomainRemoveInactive(virDomainObjListPtr doms,
1572 1573
                             virDomainObjPtr dom);

1574
virDomainDeviceDefPtr virDomainDeviceDefParse(virCapsPtr caps,
1575
                                              const virDomainDefPtr def,
1576
                                              const char *xmlStr,
L
Laine Stump 已提交
1577
                                              unsigned int flags);
1578
virDomainDefPtr virDomainDefParseString(virCapsPtr caps,
1579
                                        const char *xmlStr,
M
Matthias Bolte 已提交
1580
                                        unsigned int expectedVirtTypes,
L
Laine Stump 已提交
1581
                                        unsigned int flags);
1582
virDomainDefPtr virDomainDefParseFile(virCapsPtr caps,
1583
                                      const char *filename,
M
Matthias Bolte 已提交
1584
                                      unsigned int expectedVirtTypes,
L
Laine Stump 已提交
1585
                                      unsigned int flags);
1586
virDomainDefPtr virDomainDefParseNode(virCapsPtr caps,
1587
                                      xmlDocPtr doc,
1588
                                      xmlNodePtr root,
M
Matthias Bolte 已提交
1589
                                      unsigned int expectedVirtTypes,
L
Laine Stump 已提交
1590
                                      unsigned int flags);
1591

1592 1593 1594
bool virDomainDefCheckABIStability(virDomainDefPtr src,
                                   virDomainDefPtr dst);

1595
int virDomainDefAddImplicitControllers(virDomainDefPtr def);
1596

1597
char *virDomainDefFormat(virDomainDefPtr def,
L
Laine Stump 已提交
1598
                         unsigned int flags);
1599

1600
int virDomainCpuSetParse(const char **str,
1601 1602 1603
                         char sep,
                         char *cpuset,
                         int maxcpu);
1604
char *virDomainCpuSetFormat(char *cpuset,
1605 1606
                            int maxcpu);

E
Eric Blake 已提交
1607
int virDomainVcpuPinAdd(virDomainDefPtr def,
1608 1609 1610 1611
                        unsigned char *cpumap,
                        int maplen,
                        int vcpu);

E
Eric Blake 已提交
1612
int virDomainVcpuPinDel(virDomainDefPtr def, int vcpu);
1613

1614
int virDomainDiskIndexByName(virDomainDefPtr def, const char *name);
1615 1616 1617 1618
int virDomainDiskInsert(virDomainDefPtr def,
                        virDomainDiskDefPtr disk);
void virDomainDiskInsertPreAlloced(virDomainDefPtr def,
                                   virDomainDiskDefPtr disk);
1619
int virDomainDiskDefAssignAddress(virCapsPtr caps, virDomainDiskDefPtr def);
1620

1621
void virDomainDiskRemove(virDomainDefPtr def, size_t i);
1622
int virDomainDiskRemoveByName(virDomainDefPtr def, const char *name);
1623

1624 1625 1626 1627
int virDomainNetIndexByMac(virDomainDefPtr def, const unsigned char *mac);
int virDomainNetInsert(virDomainDefPtr def, virDomainNetDefPtr net);
int virDomainNetRemoveByMac(virDomainDefPtr def, const unsigned char *mac);

1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
int virDomainGraphicsListenGetType(virDomainGraphicsDefPtr def, size_t ii)
            ATTRIBUTE_NONNULL(1);
int virDomainGraphicsListenSetType(virDomainGraphicsDefPtr def, size_t ii, int val)
            ATTRIBUTE_NONNULL(1);
const char *virDomainGraphicsListenGetAddress(virDomainGraphicsDefPtr def,
                                              size_t ii)
            ATTRIBUTE_NONNULL(1);
int virDomainGraphicsListenSetAddress(virDomainGraphicsDefPtr def,
                                      size_t ii, const char *address,
                                      int len, bool setType)
            ATTRIBUTE_NONNULL(1);
const char *virDomainGraphicsListenGetNetwork(virDomainGraphicsDefPtr def,
                                              size_t ii)
            ATTRIBUTE_NONNULL(1);
int virDomainGraphicsListenSetNetwork(virDomainGraphicsDefPtr def,
                                      size_t ii, const char *network, int len)
            ATTRIBUTE_NONNULL(1);

1646 1647 1648 1649 1650 1651
int virDomainNetGetActualType(virDomainNetDefPtr iface);
char *virDomainNetGetActualBridgeName(virDomainNetDefPtr iface);
char *virDomainNetGetActualDirectDev(virDomainNetDefPtr iface);
int virDomainNetGetActualDirectMode(virDomainNetDefPtr iface);
virVirtualPortProfileParamsPtr
virDomainNetGetActualDirectVirtPortProfile(virDomainNetDefPtr iface);
1652 1653
virBandwidthPtr
virDomainNetGetActualBandwidth(virDomainNetDefPtr iface);
1654

1655 1656 1657 1658 1659
int virDomainControllerInsert(virDomainDefPtr def,
                              virDomainControllerDefPtr controller);
void virDomainControllerInsertPreAlloced(virDomainDefPtr def,
                                         virDomainControllerDefPtr controller);

1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671

int virDomainLeaseIndex(virDomainDefPtr def,
                        virDomainLeaseDefPtr lease);
int virDomainLeaseInsert(virDomainDefPtr def,
                         virDomainLeaseDefPtr lease);
int virDomainLeaseInsertPreAlloc(virDomainDefPtr def);
void virDomainLeaseInsertPreAlloced(virDomainDefPtr def,
                                    virDomainLeaseDefPtr lease);
void virDomainLeaseRemoveAt(virDomainDefPtr def, size_t i);
int virDomainLeaseRemove(virDomainDefPtr def,
                         virDomainLeaseDefPtr lease);

1672
int virDomainSaveXML(const char *configDir,
1673 1674 1675
                     virDomainDefPtr def,
                     const char *xml);

1676
int virDomainSaveConfig(const char *configDir,
1677
                        virDomainDefPtr def);
1678
int virDomainSaveStatus(virCapsPtr caps,
1679
                        const char *statusDir,
1680
                        virDomainObjPtr obj) ATTRIBUTE_RETURN_CHECK;
1681

1682 1683 1684 1685
typedef void (*virDomainLoadConfigNotify)(virDomainObjPtr dom,
                                          int newDomain,
                                          void *opaque);

1686
int virDomainLoadAllConfigs(virCapsPtr caps,
1687
                            virDomainObjListPtr doms,
1688
                            const char *configDir,
1689
                            const char *autostartDir,
1690
                            int liveStatus,
M
Matthias Bolte 已提交
1691
                            unsigned int expectedVirtTypes,
1692 1693
                            virDomainLoadConfigNotify notify,
                            void *opaque);
1694

1695
int virDomainDeleteConfig(const char *configDir,
1696
                          const char *autostartDir,
1697 1698
                          virDomainObjPtr dom);

1699
char *virDomainConfigFile(const char *dir,
1700 1701
                          const char *name);

1702 1703 1704 1705
int virDiskNameToBusDeviceIndex(virDomainDiskDefPtr disk,
                                int *busIdx,
                                int *devIdx);

1706
virDomainFSDefPtr virDomainGetRootFilesystem(virDomainDefPtr def);
1707 1708
int virDomainVideoDefaultType(virDomainDefPtr def);
int virDomainVideoDefaultRAM(virDomainDefPtr def, int type);
1709

1710 1711 1712 1713
int virDomainObjIsDuplicate(virDomainObjListPtr doms,
                            virDomainDefPtr def,
                            unsigned int check_active);

D
Daniel P. Berrange 已提交
1714 1715
void virDomainObjLock(virDomainObjPtr obj);
void virDomainObjUnlock(virDomainObjPtr obj);
1716

1717 1718 1719 1720 1721 1722 1723 1724 1725
int virDomainObjListNumOfDomains(virDomainObjListPtr doms, int active);

int virDomainObjListGetActiveIDs(virDomainObjListPtr doms,
                                 int *ids,
                                 int maxids);
int virDomainObjListGetInactiveNames(virDomainObjListPtr doms,
                                     char **const names,
                                     int maxnames);

E
Eric Blake 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734
typedef int (*virDomainSmartcardDefIterator)(virDomainDefPtr def,
                                             virDomainSmartcardDefPtr dev,
                                             void *opaque);

int virDomainSmartcardDefForeach(virDomainDefPtr def,
                                 bool abortOnError,
                                 virDomainSmartcardDefIterator iter,
                                 void *opaque);

1735 1736 1737 1738 1739 1740 1741 1742 1743
typedef int (*virDomainChrDefIterator)(virDomainDefPtr def,
                                       virDomainChrDefPtr dev,
                                       void *opaque);

int virDomainChrDefForeach(virDomainDefPtr def,
                           bool abortOnError,
                           virDomainChrDefIterator iter,
                           void *opaque);

1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
typedef int (*virDomainDiskDefPathIterator)(virDomainDiskDefPtr disk,
                                            const char *path,
                                            size_t depth,
                                            void *opaque);

int virDomainDiskDefForeachPath(virDomainDiskDefPtr disk,
                                bool allowProbing,
                                bool ignoreOpenFailure,
                                virDomainDiskDefPathIterator iter,
                                void *opaque);

J
Jiri Denemark 已提交
1755 1756 1757 1758 1759 1760 1761
void
virDomainObjSetState(virDomainObjPtr obj, virDomainState state, int reason)
        ATTRIBUTE_NONNULL(1);
virDomainState
virDomainObjGetState(virDomainObjPtr obj, int *reason)
        ATTRIBUTE_NONNULL(1);

1762 1763 1764
typedef const char* (*virLifecycleToStringFunc)(int type);
typedef int (*virLifecycleFromStringFunc)(const char *type);

1765 1766
VIR_ENUM_DECL(virDomainTaint)

1767 1768 1769 1770
VIR_ENUM_DECL(virDomainVirt)
VIR_ENUM_DECL(virDomainBoot)
VIR_ENUM_DECL(virDomainFeature)
VIR_ENUM_DECL(virDomainLifecycle)
1771
VIR_ENUM_DECL(virDomainLifecycleCrash)
1772
VIR_ENUM_DECL(virDomainDevice)
1773 1774
VIR_ENUM_DECL(virDomainDeviceAddress)
VIR_ENUM_DECL(virDomainDeviceAddressMode)
1775 1776 1777
VIR_ENUM_DECL(virDomainDisk)
VIR_ENUM_DECL(virDomainDiskDevice)
VIR_ENUM_DECL(virDomainDiskBus)
1778
VIR_ENUM_DECL(virDomainDiskCache)
1779
VIR_ENUM_DECL(virDomainDiskErrorPolicy)
M
MORITA Kazutaka 已提交
1780
VIR_ENUM_DECL(virDomainDiskProtocol)
M
Matthias Dahl 已提交
1781
VIR_ENUM_DECL(virDomainDiskIo)
1782
VIR_ENUM_DECL(virDomainIoEventFd)
1783
VIR_ENUM_DECL(virDomainVirtioEventIdx)
1784
VIR_ENUM_DECL(virDomainController)
1785
VIR_ENUM_DECL(virDomainControllerModelSCSI)
M
Marc-André Lureau 已提交
1786
VIR_ENUM_DECL(virDomainControllerModelUSB)
1787
VIR_ENUM_DECL(virDomainFS)
1788
VIR_ENUM_DECL(virDomainFSAccessMode)
1789
VIR_ENUM_DECL(virDomainNet)
1790
VIR_ENUM_DECL(virDomainNetBackend)
1791
VIR_ENUM_DECL(virDomainNetVirtioTxMode)
1792
VIR_ENUM_DECL(virDomainChrDevice)
1793
VIR_ENUM_DECL(virDomainChrChannelTarget)
1794
VIR_ENUM_DECL(virDomainChrConsoleTarget)
E
Eric Blake 已提交
1795
VIR_ENUM_DECL(virDomainSmartcard)
1796
VIR_ENUM_DECL(virDomainChr)
1797
VIR_ENUM_DECL(virDomainChrTcpProtocol)
E
Eric Blake 已提交
1798
VIR_ENUM_DECL(virDomainChrSpicevmc)
1799
VIR_ENUM_DECL(virDomainSoundModel)
1800
VIR_ENUM_DECL(virDomainMemballoonModel)
1801
VIR_ENUM_DECL(virDomainSmbiosMode)
R
Richard Jones 已提交
1802 1803
VIR_ENUM_DECL(virDomainWatchdogModel)
VIR_ENUM_DECL(virDomainWatchdogAction)
1804
VIR_ENUM_DECL(virDomainVideo)
1805 1806
VIR_ENUM_DECL(virDomainHostdevMode)
VIR_ENUM_DECL(virDomainHostdevSubsys)
M
Marc-André Lureau 已提交
1807
VIR_ENUM_DECL(virDomainHub)
1808
VIR_ENUM_DECL(virDomainRedirdevBus)
1809 1810 1811
VIR_ENUM_DECL(virDomainInput)
VIR_ENUM_DECL(virDomainInputBus)
VIR_ENUM_DECL(virDomainGraphics)
1812
VIR_ENUM_DECL(virDomainGraphicsListen)
1813
VIR_ENUM_DECL(virDomainGraphicsAuthConnected)
1814 1815
VIR_ENUM_DECL(virDomainGraphicsSpiceChannelName)
VIR_ENUM_DECL(virDomainGraphicsSpiceChannelMode)
1816 1817 1818 1819
VIR_ENUM_DECL(virDomainGraphicsSpiceImageCompression)
VIR_ENUM_DECL(virDomainGraphicsSpiceJpegCompression)
VIR_ENUM_DECL(virDomainGraphicsSpiceZlibCompression)
VIR_ENUM_DECL(virDomainGraphicsSpicePlaybackCompression)
1820
VIR_ENUM_DECL(virDomainGraphicsSpiceStreamingMode)
1821
VIR_ENUM_DECL(virDomainGraphicsSpiceClipboardCopypaste)
1822
VIR_ENUM_DECL(virDomainNumatuneMemMode)
1823 1824
/* from libvirt.h */
VIR_ENUM_DECL(virDomainState)
J
Jiri Denemark 已提交
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
VIR_ENUM_DECL(virDomainNostateReason)
VIR_ENUM_DECL(virDomainRunningReason)
VIR_ENUM_DECL(virDomainBlockedReason)
VIR_ENUM_DECL(virDomainPausedReason)
VIR_ENUM_DECL(virDomainShutdownReason)
VIR_ENUM_DECL(virDomainShutoffReason)
VIR_ENUM_DECL(virDomainCrashedReason)

const char *virDomainStateReasonToString(virDomainState state, int reason);
int virDomainStateReasonFromString(virDomainState state, const char *reason);

1836
VIR_ENUM_DECL(virDomainSeclabel)
1837
VIR_ENUM_DECL(virDomainClockOffset)
1838

1839
VIR_ENUM_DECL(virDomainTimerName)
1840
VIR_ENUM_DECL(virDomainTimerTrack)
1841 1842 1843
VIR_ENUM_DECL(virDomainTimerTickpolicy)
VIR_ENUM_DECL(virDomainTimerMode)

1844
#endif /* __DOMAIN_CONF_H */