formatcaps.html.in 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<html>
  <body>
    <h1>Driver capabilities XML format</h1>

        <p>As new virtualization engine support gets added to libvirt, and to handle
cases like QEmu supporting a variety of emulations, a query interface has
been added in 0.2.1 allowing to list the set of supported virtualization
capabilities on the host:</p>
        <pre>    char * virConnectGetCapabilities (virConnectPtr conn);</pre>
        <p>The value returned is an XML document listing the virtualization
capabilities of the host and virtualization engine to which
<code>@conn</code> is connected. One can test it using <code>virsh</code>
command line tool command '<code>capabilities</code>', it dumps the XML
associated to the current connection. For example in the case of a 64 bits
machine with hardware virtualization capabilities enabled in the chip and
BIOS you will see</p>
        <pre>&lt;capabilities&gt;
  <span style="color: #E50000">&lt;host&gt;
    &lt;cpu&gt;
      &lt;arch&gt;x86_64&lt;/arch&gt;
      &lt;features&gt;
        &lt;vmx/&gt;
      &lt;/features&gt;
24
      &lt;model&gt;core2duo&lt;/model&gt;
J
Jiri Denemark 已提交
25
      &lt;vendor&gt;Intel&lt;/vendor&gt;
26 27 28 29
      &lt;topology sockets="1" cores="2" threads="1"/&gt;
      &lt;feature name="lahf_lm"/&gt;
      &lt;feature name='xtpr'/&gt;
      ...
30
    &lt;/cpu&gt;
31 32 33
    &lt;power_management&gt;
      &lt;S3/&gt;
      &lt;S4/&gt;
34
      &lt;Hybrid-Suspend/&gt;
35
    &lt;power_management/&gt;
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
  &lt;/host&gt;</span>

  &lt;!-- xen-3.0-x86_64 --&gt;
  <span style="color: #0000E5">&lt;guest&gt;
    &lt;os_type&gt;xen&lt;/os_type&gt;
    &lt;arch name="x86_64"&gt;
      &lt;wordsize&gt;64&lt;/wordsize&gt;
      &lt;domain type="xen"&gt;&lt;/domain&gt;
      &lt;emulator&gt;/usr/lib64/xen/bin/qemu-dm&lt;/emulator&gt;
    &lt;/arch&gt;
    &lt;features&gt;
    &lt;/features&gt;
  &lt;/guest&gt;</span>

  &lt;!-- hvm-3.0-x86_32 --&gt;
  <span style="color: #00B200">&lt;guest&gt;
    &lt;os_type&gt;hvm&lt;/os_type&gt;
    &lt;arch name="i686"&gt;
      &lt;wordsize&gt;32&lt;/wordsize&gt;
      &lt;domain type="xen"&gt;&lt;/domain&gt;
      &lt;emulator&gt;/usr/lib/xen/bin/qemu-dm&lt;/emulator&gt;
      &lt;machine&gt;pc&lt;/machine&gt;
      &lt;machine&gt;isapc&lt;/machine&gt;
      &lt;loader&gt;/usr/lib/xen/boot/hvmloader&lt;/loader&gt;
    &lt;/arch&gt;
    &lt;features&gt;
62
      &lt;cpuselection/&gt;
63
      &lt;deviceboot/&gt;
64 65 66 67
    &lt;/features&gt;
  &lt;/guest&gt;</span>
  ...
&lt;/capabilities&gt;</pre>
E
Eric Blake 已提交
68 69 70 71 72 73 74
        <p>The first block (in red) indicates the host hardware
          capabilities, such as CPU properties and the power
          management features of the host platform.  CPU models are
          shown as additional features relative to the closest base
          model, within a feature block (the block is similar to what
          you will find in a Xen fully virtualized domain
          description). Further, the power management features
75 76 77
          supported by the host are shown, such as Suspend-to-RAM (S3),
          Suspend-to-Disk (S4) and Hybrid-Suspend (a combination of S3
          and S4). In case the query for power
E
Eric Blake 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
          management features succeeded but the host does not support
          any such feature, then an empty &lt;power_management/&gt;
          tag will be shown. Otherwise, if the query itself failed, no
          such tag will be displayed (i.e., there will not be any
          power_management block or empty tag in the XML).</p>
        <p>The second block (in blue) indicates the paravirtualization
          support of the Xen support, you will see the os_type of xen
          to indicate a paravirtual kernel, then architecture
          information and potential features.</p>
        <p>The third block (in green) gives similar information but
          when running a 32 bit OS fully virtualized with Xen using
          the hvm support.</p>
        <p>This section is likely to be updated and augmented in the
          future,
          see <a href="https://www.redhat.com/archives/libvir-list/2007-March/msg00215.html">the
          discussion</a> which led to the capabilities format in the
          mailing-list archives.</p>
95 96 97

  </body>
</html>