2010-03-05 20:12:52 +03:00
<domain type= 'qemu' >
<name > QEMUGuest1</name>
<uuid > c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
2012-02-23 04:48:38 +04:00
<memory unit= 'KiB' > 219136</memory>
<currentMemory unit= 'KiB' > 219136</currentMemory>
2012-05-08 20:04:36 +04:00
<vcpu placement= 'static' > 1</vcpu>
2010-03-05 20:12:52 +03:00
<os >
<type arch= 'i686' machine= 'pc' > hvm</type>
<boot dev= 'hd' />
</os>
<clock offset= 'utc' />
<on_poweroff > destroy</on_poweroff>
<on_reboot > restart</on_reboot>
<on_crash > destroy</on_crash>
<devices >
2017-04-06 19:19:48 +03:00
<emulator > /usr/bin/qemu-system-i686</emulator>
2010-03-05 20:12:52 +03:00
<disk type= 'block' device= 'disk' >
<source dev= '/dev/HostVG/QEMUGuest1' />
<target dev= 'hda' bus= 'ide' />
2012-02-27 14:19:54 +04:00
<address type= 'drive' controller= '0' bus= '0' target= '0' unit= '0' />
2010-03-05 20:12:52 +03:00
</disk>
2012-02-08 04:48:25 +04:00
<controller type= 'usb' index= '0' />
2010-03-05 20:12:52 +03:00
<controller type= 'ide' index= '0' />
2013-04-22 16:16:13 +04:00
<controller type= 'pci' index= '0' model= 'pci-root' />
2010-03-05 23:18:52 +03:00
<input type= 'mouse' bus= 'ps2' />
2014-02-17 14:17:53 +04:00
<input type= 'keyboard' bus= 'ps2' />
2012-05-08 21:42:44 +04:00
<graphics type= 'spice' port= '5903' tlsPort= '5904' autoport= 'no' listen= '127.0.0.1' defaultMode= 'secure' >
conf: add <listen> subelement to domain <graphics> element
Once it's plugged in, the <listen> element will be an optional
replacement for the "listen" attribute that graphics elements already
have. If the <listen> element is type='address', it will have an
attribute called 'address' which will contain an IP address or dns
name that the guest's display server should listen on. If, however,
type='network', the <listen> element should have an attribute called
'network' that will be set to the name of a network configuration to
get the IP address from.
* docs/schemas/domain.rng: updated to allow the <listen> element
* docs/formatdomain.html.in: document the <listen> element and its
attributes.
* src/conf/domain_conf.[hc]:
1) The domain parser, formatter, and data structure are modified to
support 0 or more <listen> subelements to each <graphics>
element. The old style "legacy" listen attribute is also still
accepted, and will be stored internally just as if it were a
separate <listen> element. On output (i.e. format), the address
attribute of the first <listen> element of type 'address' will be
duplicated in the legacy "listen" attribute of the <graphic>
element.
2) The "listenAddr" attribute has been removed from the unions in
virDomainGRaphicsDef for graphics types vnc, rdp, and spice.
This attribute is now in the <listen> subelement (aka
virDomainGraphicsListenDef)
3) Helper functions were written to provide simple access
(both Get and Set) to the listen elements and their attributes.
* src/libvirt_private.syms: export the listen helper functions
* src/qemu/qemu_command.c, src/qemu/qemu_hotplug.c,
src/qemu/qemu_migration.c, src/vbox/vbox_tmpl.c,
src/vmx/vmx.c, src/xenxs/xen_sxpr.c, src/xenxs/xen_xm.c
Modify all these files to use the listen helper functions rather
than directly referencing the (now missing) listenAddr
attribute. There can be multiple <listen> elements to a single
<graphics>, but the drivers all currently only support one, so all
replacements of direct access with a helper function indicate index
"0".
* tests/* - only 3 of these are new files added explicitly to test the
new <listen> element. All the others have been modified to reflect
the fact that any legacy "listen" attributes passed in to the domain
parse will be saved in a <listen> element (i.e. one of the
virDomainGraphicsListenDefs), and during the domain format function,
both the <listen> element as well as the legacy attributes will be
output.
2011-07-07 08:20:28 +04:00
<listen type= 'address' address= '127.0.0.1' />
2010-04-09 20:56:00 +04:00
<channel name= 'main' mode= 'secure' />
<channel name= 'inputs' mode= 'insecure' />
2011-04-14 12:44:20 +04:00
<image compression= 'auto_glz' />
<jpeg compression= 'auto' />
<zlib compression= 'auto' />
<playback compression= 'on' />
2011-05-23 19:16:42 +04:00
<streaming mode= 'filter' />
2011-06-14 15:35:48 +04:00
<clipboard copypaste= 'no' />
2014-01-16 20:11:15 +04:00
<filetransfer enable= 'no' />
2010-04-09 20:56:00 +04:00
</graphics>
2010-03-05 20:12:52 +03:00
<video >
2014-11-20 21:52:00 +03:00
<model type= 'qxl' ram= '65536' vram= '32768' vgamem= '8192' heads= '1' />
2010-03-05 20:12:52 +03:00
</video>
2010-04-09 20:26:06 +04:00
<video >
2014-11-20 21:52:00 +03:00
<model type= 'qxl' ram= '65536' vram= '32768' vgamem= '8192' heads= '1' />
2010-04-09 20:26:06 +04:00
</video>
2010-11-09 16:51:21 +03:00
<memballoon model= 'virtio' />
2010-03-05 20:12:52 +03:00
</devices>
</domain>