formatstorage.html.in 36.7 KB
Newer Older
1 2 3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
4 5 6
  <body>
    <h1>Storage pool and volume XML format</h1>

7
    <ul id="toc"></ul>
8

9 10 11 12 13 14 15 16 17
    <h2><a name="StoragePool">Storage pool XML</a></h2>

    <p>
      Although all storage pool backends share the same public APIs and
      XML format, they have varying levels of capabilities. Some may
      allow creation of volumes, others may only allow use of pre-existing
      volumes. Some may have constraints on volume size, or placement.
    </p>
    <p>
18
      The top level tag for a storage pool document is 'pool'. It has
19
      a single attribute <code>type</code>, which is one of <code>dir</code>,
20
      <code>fs</code>, <code>netfs</code>, <code>disk</code>,
E
Eric Blake 已提交
21 22 23
      <code>iscsi</code>, <code>logical</code>, <code>scsi</code>
      (all <span class="since">since 0.4.1</span>), <code>mpath</code>
      (<span class="since">since 0.7.1</span>), <code>rbd</code>
E
Eric Blake 已提交
24 25
      (<span class="since">since 0.9.13</span>), <code>sheepdog</code>
      (<span class="since">since 0.10.0</span>),
26 27 28
      <code>gluster</code> (<span class="since">since
      1.2.0</span>) or <code>zfs</code> (<span class="since">since
      1.2.8</span>). This corresponds to the
29
      storage backend drivers listed further along in this document.
30 31 32 33
    </p>
    <h3><a name="StoragePoolFirst">General metadata</a></h3>

    <pre>
34 35 36 37 38 39 40
&lt;pool type="iscsi"&gt;
  &lt;name&gt;virtimages&lt;/name&gt;
  &lt;uuid&gt;3e3fce45-4f53-4fa7-bb32-11f34168b82b&lt;/uuid&gt;
  &lt;allocation&gt;10000000&lt;/allocation&gt;
  &lt;capacity&gt;50000000&lt;/capacity&gt;
  &lt;available&gt;40000000&lt;/available&gt;
  ...</pre>
41 42 43 44

    <dl>
      <dt><code>name</code></dt>
      <dd>Providing a name for the pool which is unique to the host.
M
Matthew Booth 已提交
45
        This is mandatory when defining a pool. <span class="since">Since 0.4.1</span></dd>
46 47
      <dt><code>uuid</code></dt>
      <dd>Providing an identifier for the pool which is globally unique.
M
Matthew Booth 已提交
48 49
        This is optional when defining a pool, a UUID will be generated if
        omitted. <span class="since">Since 0.4.1</span></dd>
50 51
      <dt><code>allocation</code></dt>
      <dd>Providing the total storage allocation for the pool. This may
M
Matthew Booth 已提交
52 53 54
        be larger than the sum of the allocation of all volumes due to
        metadata overhead. This value is in bytes. This is not applicable
        when creating a pool. <span class="since">Since 0.4.1</span></dd>
55 56
      <dt><code>capacity</code></dt>
      <dd>Providing the total storage capacity for the pool. Due to
M
Matthew Booth 已提交
57 58 59
        underlying device constraints it may not be possible to use the
        full capacity for storage volumes. This value is in bytes. This
        is not applicable when creating a pool. <span class="since">Since 0.4.1</span></dd>
60 61
      <dt><code>available</code></dt>
      <dd>Providing the free space available for allocating new volumes
M
Matthew Booth 已提交
62 63 64 65
        in the pool. Due to underlying device constraints it may not be
        possible to allocate the entire free space to a single volume.
        This value is in bytes. This is not applicable when creating a
        pool. <span class="since">Since 0.4.1</span></dd>
66 67 68 69 70 71 72
    </dl>

    <h3><a name="StoragePoolSource">Source elements</a></h3>

    <p>
      A single <code>source</code> element is contained within the top level
      <code>pool</code> element. This tag is used to describe the source of
E
Eric Blake 已提交
73 74
      the storage pool. The set of child elements that it will contain
      depend on the pool type, but come from the following child elements:
75 76 77
    </p>

    <pre>
78 79 80 81 82 83 84 85 86 87 88
...
&lt;source&gt;
  &lt;host name="iscsi.example.com"/&gt;
  &lt;device path="iqn.2013-06.com.example:iscsi-pool"/&gt;
  &lt;auth type='chap' username='myname'&gt;
    &lt;secret usage='mycluster_myname'/&gt;
  &lt;/auth&gt;
  &lt;vendor name="Acme"/&gt;
  &lt;product name="model"/&gt;
&lt;/source&gt;
...</pre>
89

90
    <pre>
91 92 93 94 95 96
...
&lt;source&gt;
  &lt;device path='/dev/mapper/mpatha' part_separator='no'/&gt;
  &lt;format type='gpt'/&gt;
&lt;/source&gt;
...</pre>
97

98
    <pre>
99 100 101 102 103
...
&lt;source&gt;
  &lt;adapter type='scsi_host' name='scsi_host1'/&gt;
&lt;/source&gt;
...</pre>
104 105

    <pre>
106 107 108 109 110 111 112 113 114
...
&lt;source&gt;
  &lt;adapter type='scsi_host'&gt;
    &lt;parentaddr unique_id='1'&gt;
      &lt;address domain='0x0000' bus='0x00' slot='0x1f' addr='0x2'/&gt;
    &lt;/parentaddr&gt;
  &lt;/adapter&gt;
&lt;/source&gt;
...</pre>
115

116
    <pre>
117 118 119 120 121
...
&lt;source&gt;
  &lt;adapter type='fc_host' parent='scsi_host5' wwnn='20000000c9831b4b' wwpn='10000000c9831b4b'/&gt;
&lt;/source&gt;
...</pre>
122

123 124
    <dl>
      <dt><code>device</code></dt>
E
Eric Blake 已提交
125 126
      <dd>Provides the source for pools backed by physical devices
        (pool types <code>fs</code>, <code>logical</code>, <code>disk</code>,
127
        <code>iscsi</code>, <code>zfs</code>).
M
Matthew Booth 已提交
128
        May be repeated multiple times depending on backend driver. Contains
129
        a required attribute <code>path</code> which is either the fully
130 131
        qualified path to the block device node or for <code>iscsi</code>
        the iSCSI Qualified Name (IQN).
132 133 134 135 136
        <span class="since">Since 0.4.1</span>
        <p>An optional attribute <code>part_separator</code> for each
        <code>path</code> may be supplied. Valid values for the attribute
        may be either "yes" or "no". This attribute is to be used for a
        <code>disk</code> pool type using a <code>path</code> to a
137 138 139 140 141
        device mapper multipath device. Setting the attribute to "yes"
        causes libvirt to attempt to generate and find target volume path's
        using a "p" separator. The default algorithm used by device mapper
        is to add the "p" separator only when the source device path ends
        with a number.
142
        <span class="since">Since 1.3.1</span></p></dd>
E
Eric Blake 已提交
143 144
      <dt><code>dir</code></dt>
      <dd>Provides the source for pools backed by directories (pool
145 146
        types <code>dir</code>, <code>netfs</code>, <code>gluster</code>),
        or optionally to select a subdirectory
E
Eric Blake 已提交
147 148
        within a pool that resembles a filesystem (pool
        type <code>gluster</code>). May
M
Matthew Booth 已提交
149
        only occur once. Contains a single attribute <code>path</code>
150 151 152
        which is the fully qualified path to the backing directory or
        for a <code>netfs</code> pool type using <code>format</code>
        type "cifs", the path to the Samba share without the leading slash.
M
Matthew Booth 已提交
153
        <span class="since">Since 0.4.1</span></dd>
154
      <dt><code>adapter</code></dt>
E
Eric Blake 已提交
155
      <dd>Provides the source for pools backed by SCSI adapters (pool
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
        type <code>scsi</code>). May only occur once.
        <dl>
          <dt><code>name</code></dt>
          <dd>The SCSI adapter name (e.g. "scsi_host1", although a name
            such as "host1" is still supported for backwards compatibility,
            it is not recommended). The scsi_host name to be used can be
            determined from the output of a <code>virsh nodedev-list
            scsi_host</code> command followed by a combination of
            <code>lspci</code> and <code>virsh nodedev-dumpxml
            scsi_hostN</code> commands to find the <code>scsi_hostN</code>
            to be used. <span class="since">Since 0.6.2</span>
            <p>
            It is further recommended to utilize the
            <code>parentaddr</code> element since it's possible to have
            the path to which the scsi_hostN uses change between system
            reboots. <span class="since">Since 1.2.7</span>
            </p>
          </dd>
        </dl>
        <dl>
          <dt><code>type</code></dt>
          <dd>Specifies the adapter type. Valid values are "scsi_host" or
            "fc_host". If omitted and the <code>name</code> attribute is
            specified, then it defaults to "scsi_host". To keep backwards
            compatibility, this attribute is optional <b>only</b> for the
            "scsi_host" adapter, but is mandatory for the "fc_host" adapter.
            <span class="since">Since 1.0.5</span>
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
            A "fc_host" capable scsi_hostN can be determined by using
            <code>virsh nodedev-list --cap fc_host</code>.
            <span class="since">Since 1.2.8</span>
            <p>
            Note: Regardless of whether a "scsi_host" adapter type is defined
            using a <code>name</code> or a <code>parentaddr</code>, it
            should refer to a real scsi_host adapter as found through a
            <code>virsh nodedev-list scsi_host</code> and <code>virsh
            nodedev-dumpxml scsi_hostN</code> on one of the scsi_host's
            displayed. It should not refer to a "fc_host" capable scsi_hostN
            nor should it refer to the vHBA created for some "fc_host"
            adapter. For a vHBA the <code>nodedev-dumpxml</code>
            output parent setting will be the "fc_host" capable scsi_hostN
            value. Additionally, do not refer to an iSCSI scsi_hostN for the
            "scsi_host" source. An iSCSI scsi_hostN's
            <code>nodedev-dumpxml</code> output parent field is generally
            "computer". This is a libvirt created parent value indicating
            no parent was defined for the node device.
            </p>
202 203 204
            </dd>
        </dl>
        <dl>
205
          <dt><code>wwnn</code> and <code>wwpn</code></dt>
206 207 208 209 210
          <dd>The "World Wide Node Name" (<code>wwnn</code>) and "World Wide
            Port Name" (<code>wwpn</code>) are used by the "fc_host" adapter
            to uniquely identify the device in the Fibre Channel storage fabric
            (the device can be either a HBA or vHBA). Both wwnn and wwpn should
            be specified. Use the command 'virsh nodedev-dumpxml' to determine
211 212 213 214 215 216 217
            how to set the values for the wwnn/wwpn of a (v)HBA. The wwnn and
            wwpn have very specific numerical format requirements based on the
            hypervisor being used, thus care should be taken if you decide to
            generate your own to follow the standards; otherwise, the pool
            will fail to start with an opaque error message indicating failure
            to write to the vport_create file during vport create/delete due
            to "No such file or directory".
218 219 220 221 222 223 224 225 226
            <span class="since">Since 1.0.4</span>
          </dd>
        </dl>
        <dl>
          <dt><code>parent</code></dt>
          <dd>Used by the "fc_host" adapter type to optionally specify the
            parent scsi_host device defined in the
            <a href="formatnode.html">Node Device</a> database as the
            <a href="http://wiki.libvirt.org/page/NPIV_in_libvirt">NPIV</a>
227 228 229 230 231
            virtual Host Bus Adapter (vHBA). The value provided must be
            a vport capable scsi_host. The value is not the scsi_host of
            the vHBA created by 'virsh nodedev-create', rather it is
            the parent of that vHBA. If the value is not provided, libvirt
            will determine the parent based either finding the wwnn,wwpn
232 233 234 235 236 237
            defined for an existing scsi_host or by creating a vHBA. Providing
            the parent attribute is also useful for the duplicate pool
            definition checks. This is more important in environments where
            both the "fc_host" and "scsi_host" source adapter pools are being
            used in order to ensure a new definition doesn't duplicate using
            the scsi_hostN of some existing storage pool.
238 239
            <span class="since">Since 1.0.4</span>
          </dd>
240 241 242 243 244 245 246 247 248 249 250 251 252
          <dt><code>managed</code></dt>
          <dd>An optional attribute to instruct the SCSI storage backend to
            manage destroying the vHBA when the pool is destroyed. For
            configurations that do not provide an already created vHBA
            from a 'virsh nodedev-create', libvirt will set this property
            to "yes". For configurations that have already created a vHBA
            via 'virsh nodedev-create' and are using the wwnn/wwpn from
            that vHBA and optionally the scsi_host parent, setting this
            attribute to "yes" will allow libvirt to destroy the node device
            when the pool is destroyed. If this attribute is set to "no" or
            not defined in the XML, then libvirt will not destroy the vHBA.
            <span class="since">Since 1.2.11</span>
          </dd>
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
        </dl>
        <dl>
          <dt><code>parentaddr</code></dt>
          <dd>Used by the "scsi_host" adapter type instead of the
            <code>name</code> attribute to more uniquely identify the
            SCSI host. Using a combination of the <code>unique_id</code>
            attribute and the <code>address</code> element to formulate
            a PCI address, a search will be performed of the
            <code>/sys/class/scsi_host/hostNN</code> links for a
            matching PCI address with a matching <code>unique_id</code>
            value in the <code>/sys/class/scsi_host/hostNN/unique_id</code>
            file. The value in the "unique_id" file will be unique enough
            for the specific PCI address. The <code>hostNN</code> will be
            used by libvirt as the basis to define which SCSI host is to
            be used for the currently booted system.
            <span class="since">Since 1.2.7</span>
            <dl>
              <dt><code>address</code></dt>
              <dd>The PCI address of the scsi_host device to be used. Using
                a PCI address provides consistent naming across system reboots
                and kernel reloads. The address will have four attributes:
                <code>domain</code> (a 2-byte hex integer, not currently used
                by qemu), <code>bus</code> (a hex value between 0 and 0xff,
                inclusive), <code>slot</code> (a hex value between 0x0 and
                0x1f, inclusive), and <code>function</code> (a value between
                0 and 7, inclusive). The PCI address can be determined by
                listing the <code>/sys/bus/pci/devices</code> and the
                <code>/sys/class/scsi_host</code> directories in order to
                find the expected scsi_host device. The address will be
                provided in a format such as "0000:00:1f:2" which can be
                used to generate the expected PCI address
                "domain='0x0000' bus='0x00' slot='0x1f' function='0x0'".
                Optionally, using the combination of the commands 'virsh
                nodedev-list scsi_host' and 'virsh nodedev-dumpxml' for a
                specific list entry and converting the resulting
                <code>path</code> element as the basis to formulate the
                correctly formatted PCI address.
              </dd>
            </dl>
            <dl>
              <dt><code>unique_id</code></dt>
              <dd>Required <code>parentaddr</code> attribute used to determine
                which of the scsi_host adapters for the provided PCI address
                should be used. The value is determine by contents of the
                <code>unique_id</code> file for the specific scsi_host adapter.
                For a PCI address of "0000:00:1f:2", the unique identifer files
                can be found using the command
                <code>find -H /sys/class/scsi_host/host*/unique_id |
301 302 303 304
                xargs grep '[0-9]'</code>. Optionally, the
                <code>virsh nodedev-dumpxml scsi_hostN</code>' of a
                specific scsi_hostN list entry will list the
                <code>unique_id</code> value.
305 306 307 308 309
              </dd>
            </dl>
          </dd>
        </dl>
      </dd>
310 311
      <dt><code>host</code></dt>
      <dd>Provides the source for pools backed by storage from a
E
Eric Blake 已提交
312
        remote server (pool types <code>netfs</code>, <code>iscsi</code>,
E
Eric Blake 已提交
313
        <code>rbd</code>, <code>sheepdog</code>, <code>gluster</code>). Will be
E
Eric Blake 已提交
314
        used in combination with a <code>directory</code>
M
Matthew Booth 已提交
315 316 317
        or <code>device</code> element. Contains an attribute <code>name</code>
        which is the hostname or IP address of the server. May optionally
        contain a <code>port</code> attribute for the protocol specific
318 319 320 321 322 323 324 325 326
        port number. Duplicate storage pool definition checks may perform
        a cursory check that the same host name by string comparison in the
        new pool does not match an existing pool's source host name when
        combined with the <code>directory</code> or <code>device</code>
        element. Name resolution of the provided hostname or IP address
        is left to the storage driver backend interactions with the remote
        server. See the <a href="storage.html">storage driver page</a> for
        any restrictions for specific storage backends.
        <span class="since">Since 0.4.1</span></dd>
327 328 329
      <dt><code>auth</code></dt>
      <dd>If present, the <code>auth</code> element provides the
        authentication credentials needed to access the source by the
E
Eric Blake 已提交
330 331 332 333 334 335
        setting of the <code>type</code> attribute (pool
        types <code>iscsi</code>, <code>rbd</code>). The <code>type</code>
        must be either "chap" or "ceph". Use "ceph" for
        Ceph RBD (Rados Block Device) network sources and use "iscsi" for CHAP
        (Challenge-Handshake Authentication Protocol) iSCSI
        targets. Additionally a mandatory attribute
336 337 338 339 340 341
        <code>username</code> identifies the username to use during
        authentication as well as a sub-element <code>secret</code> with
        a mandatory attribute <code>type</code>, to tie back to a
        <a href="formatsecret.html">libvirt secret object</a> that
        holds the actual password or other credentials. The domain XML
        intentionally does not expose the password, only the reference
E
Eric Blake 已提交
342
        to the object that manages the password.
343 344 345 346 347 348
        The <code>secret</code> element requires either a <code>uuid</code>
        attribute with the UUID of the secret object or a <code>usage</code>
        attribute matching the key that was specified in the
        secret object.  <span class="since">Since 0.9.7 for "ceph" and
        1.1.1 for "chap"</span>
      </dd>
349 350
      <dt><code>name</code></dt>
      <dd>Provides the source for pools backed by storage from a
E
Eric Blake 已提交
351
        named element (pool types <code>logical</code>, <code>rbd</code>,
E
Eric Blake 已提交
352 353
        <code>sheepdog</code>, <code>gluster</code>).  Contains a
        string identifier.
M
Matthew Booth 已提交
354
        <span class="since">Since 0.4.5</span></dd>
355
      <dt><code>format</code></dt>
E
Eric Blake 已提交
356 357 358
      <dd>Provides information about the format of the pool (pool
        types <code>fs</code>, <code>netfs</code>, <code>disk</code>,
        <code>logical</code>). This
M
Matthew Booth 已提交
359 360 361 362 363
        contains a single attribute <code>type</code> whose value is
        backend specific. This is typically used to indicate filesystem
        type, or network filesystem type, or partition table type, or
        LVM metadata type. All drivers are required to have a default
        value for this, so it is optional. <span class="since">Since 0.4.1</span></dd>
364 365 366 367 368 369 370 371 372 373

      <dt><code>vendor</code></dt>
      <dd>Provides optional information about the vendor of the
        storage device. This contains a single
        attribute <code>name</code> whose value is backend
        specific. <span class="since">Since 0.8.4</span></dd>
      <dt><code>product</code></dt>
      <dd>Provides an optional product name of the storage device.
        This contains a single attribute <code>name</code> whose value
        is backend specific.  <span class="since">Since 0.8.4</span></dd>
374 375 376 377 378 379
    </dl>

    <h3><a name="StoragePoolTarget">Target elements</a></h3>

    <p>
      A single <code>target</code> element is contained within the top level
E
Eric Blake 已提交
380 381 382 383 384
      <code>pool</code> element for some types of pools (pool
      types <code>dir</code>, <code>fs</code>, <code>netfs</code>,
      <code>logical</code>, <code>disk</code>, <code>iscsi</code>,
      <code>scsi</code>, <code>mpath</code>). This tag is used to
      describe the mapping of
385 386 387 388 389
      the storage pool into the host filesystem. It can contain the following
      child elements:
    </p>

    <pre>
390 391 392 393 394 395 396 397 398 399 400
  ...
  &lt;target&gt;
    &lt;path&gt;/dev/disk/by-path&lt;/path&gt;
    &lt;permissions&gt;
      &lt;owner&gt;107&lt;/owner&gt;
      &lt;group&gt;107&lt;/group&gt;
      &lt;mode&gt;0744&lt;/mode&gt;
      &lt;label&gt;virt_image_t&lt;/label&gt;
    &lt;/permissions&gt;
  &lt;/target&gt;
&lt;/pool&gt;</pre>
401 402 403 404

    <dl>
      <dt><code>path</code></dt>
      <dd>Provides the location at which the pool will be mapped into
405 406 407 408
        the local filesystem namespace, as an absolute path. For a
        filesystem/directory based pool it will be a fully qualified name of
        the directory in which volumes will be created. For device based pools
        it will be a fully qualified name of the directory in which
M
Matthew Booth 已提交
409 410 411 412
        devices nodes exist. For the latter <code>/dev/</code> may seem
        like the logical choice, however, devices nodes there are not
        guaranteed stable across reboots, since they are allocated on
        demand. It is preferable to use a stable location such as one
413
        of the <code>/dev/disk/by-{path|id|uuid|label}</code> locations.
414 415
        For a Multipath pool (type <code>mpath</code>), the provided
        value is ignored and the default value of "/dev/mapper" is used.
M
Matthew Booth 已提交
416
        <span class="since">Since 0.4.1</span>
417 418
      </dd>
      <dt><code>permissions</code></dt>
419 420 421
      <dd>This is currently only useful for directory or filesystem based
        pools, which are mapped as a directory into the local filesystem
        namespace. It provides information about the permissions to use for the
422 423
        final directory when the pool is built. There are 4 child elements.
        The <code>mode</code> element contains the octal permission set.
424
        The <code>mode</code> defaults to 0755 when not provided.
425 426 427 428 429 430
        The <code>owner</code> element contains the numeric user ID.
        The <code>group</code> element contains the numeric group ID.
        If <code>owner</code> or <code>group</code> aren't specified when
        creating a directory, the values are inherited from the parent
        directory. The <code>label</code> element contains the MAC (eg SELinux)
        label string.
M
Matthew Booth 已提交
431
        <span class="since">Since 0.4.1</span>
432 433 434
        For running directory or filesystem based pools, these fields
        will be filled with the values used by the existing directory.
        <span class="since">Since 1.2.16</span>
435
      </dd>
436 437 438 439 440 441 442 443 444 445 446 447 448
      <dt><code>timestamps</code></dt>
      <dd>Provides timing information about the volume. Up to four
        sub-elements are present,
        where <code>atime</code>, <code>btime</code>, <code>ctime</code>
        and <code>mtime</code> hold the access, birth, change and
        modification time of the volume, where known. The used time
        format is &lt;seconds&gt;.&lt;nanoseconds&gt; since the
        beginning of the epoch (1 Jan 1970). If nanosecond resolution
        is 0 or otherwise unsupported by the host OS or filesystem,
        then the nanoseconds part is omitted.  This is a readonly
        attribute and is ignored when creating a volume.
        <span class="since">Since 0.10.0</span>
      </dd>
449 450 451 452 453
      <dt><code>encryption</code></dt>
      <dd>If present, specifies how the volume is encrypted.  See
        the <a href="formatstorageencryption.html">Storage Encryption</a> page
        for more information.
      </dd>
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
    </dl>

    <h3><a name="StoragePoolExtents">Device extents</a></h3>

    <p>
      If a storage pool exposes information about its underlying
      placement / allocation scheme, the <code>device</code> element
      within the <code>source</code> element may contain information
      about its available extents. Some pools have a constraint that
      a volume must be allocated entirely within a single constraint
      (eg disk partition pools). Thus the extent information allows an
      application to determine the maximum possible size for a new
      volume
    </p>
    <p>
      For storage pools supporting extent information, within each
      <code>device</code> element there will be zero or more <code>freeExtent</code>
      elements. Each of these elements contains two attributes, <code>start</code>
      and <code>end</code> which provide the boundaries of the extent on the
      device, measured in bytes.  <span class="since">Since 0.4.1</span>
    </p>

    <h2><a name="StorageVol">Storage volume XML</a></h2>
    <p>
478 479 480
      A storage volume will generally be either a file or a device
      node; <span class="since">since 1.2.0</span>, an optional
      output-only attribute <code>type</code> lists the actual type
O
Olga Krishtal 已提交
481
      (file, block, dir, network, netdir or ploop), which is also available
482 483
      from <code>virStorageVolGetInfo()</code>.  The storage volume
      XML format is available <span class="since">since 0.4.1</span>
484 485 486 487 488
    </p>

    <h3><a name="StorageVolFirst">General metadata</a></h3>

    <pre>
489 490 491 492 493 494
&lt;volume type='file'&gt;
  &lt;name&gt;sparse.img&lt;/name&gt;
  &lt;key&gt;/var/lib/xen/images/sparse.img&lt;/key&gt;
  &lt;allocation&gt;0&lt;/allocation&gt;
  &lt;capacity unit="T"&gt;1&lt;/capacity&gt;
  ...</pre>
495 496 497 498

    <dl>
      <dt><code>name</code></dt>
      <dd>Providing a name for the volume which is unique to the pool.
499 500 501 502 503 504 505
        This is mandatory when defining a volume. For a disk pool, the
        name must be combination of the <code>source</code> device path
        device and next partition number to be created. For example, if
        the <code>source</code> device path is /dev/sdb and there are no
        partitions on the disk, then the name must be sdb1 with the next
        name being sdb2 and so on.
        <span class="since">Since 0.4.1</span></dd>
506
      <dt><code>key</code></dt>
507 508 509 510
      <dd>Providing an identifier for the volume which identifies a
          single volume. In some cases it's possible to have two distinct keys
          identifying a single volume. This field cannot be set when creating
          a volume: it is always generated.
511
        <span class="since">Since 0.4.1</span></dd>
512 513
      <dt><code>allocation</code></dt>
      <dd>Providing the total storage allocation for the volume. This
M
Matthew Booth 已提交
514 515 516 517 518 519 520
        may be smaller than the logical capacity if the volume is sparsely
        allocated. It may also be larger than the logical capacity if the
        volume has substantial metadata overhead. This value is in bytes.
        If omitted when creating a volume, the volume will be fully
        allocated at time of creation. If set to a value smaller than the
        capacity, the pool has the <strong>option</strong> of deciding
        to sparsely allocate a volume. It does not have to honour requests
521 522 523 524 525
        for sparse allocation though. Different types of pools may treat
        sparse volumes differently. For example, the <code>logical</code>
        pool will not automatically expand volume's allocation when it
        gets full; the user is responsible for doing that or configuring
        dmeventd to do so automatically.<br/>
526
        <br/>
527
        By default this is specified in bytes, but an optional attribute
528
        <code>unit</code> can be specified to adjust the passed value.
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
        Values can be: 'B' or 'bytes' for bytes, 'KB' (kilobytes,
        10<sup>3</sup> or 1000 bytes), 'K' or 'KiB' (kibibytes,
        2<sup>10</sup> or 1024 bytes), 'MB' (megabytes, 10<sup>6</sup>
        or 1,000,000 bytes), 'M' or 'MiB' (mebibytes, 2<sup>20</sup>
        or 1,048,576 bytes), 'GB' (gigabytes, 10<sup>9</sup> or
        1,000,000,000 bytes), 'G' or 'GiB' (gibibytes, 2<sup>30</sup>
        or 1,073,741,824 bytes), 'TB' (terabytes, 10<sup>12</sup> or
        1,000,000,000,000 bytes), 'T' or 'TiB' (tebibytes,
        2<sup>40</sup> or 1,099,511,627,776 bytes), 'PB' (petabytes,
        10<sup>15</sup> or 1,000,000,000,000,000 bytes), 'P' or 'PiB'
        (pebibytes, 2<sup>50</sup> or 1,125,899,906,842,624 bytes),
        'EB' (exabytes, 10<sup>18</sup> or 1,000,000,000,000,000,000
        bytes), or 'E' or 'EiB' (exbibytes, 2<sup>60</sup> or
        1,152,921,504,606,846,976 bytes).  <span class="since">Since
        0.4.1, multi-character <code>unit</code> since
        0.9.11</span></dd>
545 546
      <dt><code>capacity</code></dt>
      <dd>Providing the logical capacity for the volume. This value is
547 548 549
        in bytes by default, but a <code>unit</code> attribute can be
        specified with the same semantics as for <code>allocation</code>
        This is compulsory when creating a volume.
M
Matthew Booth 已提交
550
        <span class="since">Since 0.4.1</span></dd>
551 552
      <dt><code>source</code></dt>
      <dd>Provides information about the underlying storage allocation
M
Matthew Booth 已提交
553 554
        of the volume. This may not be available for some pool types.
        <span class="since">Since 0.4.1</span></dd>
555 556
      <dt><code>target</code></dt>
      <dd>Provides information about the representation of the volume
M
Matthew Booth 已提交
557
        on the local host. <span class="since">Since 0.4.1</span></dd>
558 559 560 561 562 563 564 565 566 567 568 569
    </dl>

    <h3><a name="StorageVolTarget">Target elements</a></h3>

    <p>
      A single <code>target</code> element is contained within the top level
      <code>volume</code> element. This tag is used to describe the mapping of
      the storage volume into the host filesystem. It can contain the following
      child elements:
    </p>

    <pre>
570 571 572 573 574 575 576 577 578 579
...
&lt;target&gt;
  &lt;path&gt;/var/lib/virt/images/sparse.img&lt;/path&gt;
  &lt;format type='qcow2'/&gt;
  &lt;permissions&gt;
    &lt;owner&gt;107&lt;/owner&gt;
    &lt;group&gt;107&lt;/group&gt;
    &lt;mode&gt;0744&lt;/mode&gt;
    &lt;label&gt;virt_image_t&lt;/label&gt;
  &lt;/permissions&gt;
J
John Ferlan 已提交
580 581 582 583 584 585 586 587
  &lt;timestamps&gt;
    &lt;atime&gt;1341933637.273190990&lt;/atime&gt;
    &lt;mtime&gt;1341930622.047245868&lt;/mtime&gt;
    &lt;ctime&gt;1341930622.047245868&lt;/ctime&gt;
  &lt;/timestamps&gt;
  &lt;encryption type='...'&gt;
    ...
  &lt;/encryption&gt;
588 589 590 591 592 593
  &lt;compat&gt;1.1&lt;/compat&gt;
  &lt;nocow/&gt;
  &lt;features&gt;
    &lt;lazy_refcounts/&gt;
  &lt;/features&gt;
&lt;/target&gt;</pre>
594 595 596

    <dl>
      <dt><code>path</code></dt>
597
      <dd>Provides the location at which the volume can be accessed on
M
Matthew Booth 已提交
598 599 600
        the local filesystem, as an absolute path. This is a readonly
        attribute, so shouldn't be specified when creating a volume.
        <span class="since">Since 0.4.1</span></dd>
601 602
      <dt><code>format</code></dt>
      <dd>Provides information about the pool specific volume format.
603 604 605
        For disk pools it will provide the partition table format type, but is
        not preserved after a pool refresh or libvirtd restart. Use extended
        in order to create an extended disk extent partition. For filesystem
M
Matthew Booth 已提交
606 607 608
        or directory pools it will provide the file format type, eg cow,
        qcow, vmdk, raw. If omitted when creating a volume, the pool's
        default format will be used. The actual format is specified via
609 610 611 612 613 614
        the <code>type</code> attribute. Consult the
        <a href="storage.html">storage driver page</a> for the list of valid
        volume format type values for each specific pool. The
        <code>format</code> will be ignored on input for pools without a
        volume format type value and the default pool format will be used.
        <span class="since">Since 0.4.1</span></dd>
615
      <dt><code>permissions</code></dt>
616
      <dd>Provides information about the permissions to use
M
Matthew Booth 已提交
617 618 619
        when creating volumes. This is currently only useful for directory
        or filesystem based pools, where the volumes allocated are simple
        files. For pools where the volumes are device nodes, the hotplug
620 621
        scripts determine permissions. There are 4 child elements.
        The <code>mode</code> element contains the octal permission set.
622
        The <code>mode</code> defaults to 0600 when not provided.
623 624 625 626 627 628 629 630
        The <code>owner</code> element contains the numeric user ID.
        The <code>group</code> element contains the numeric group ID.
        If <code>owner</code> or <code>group</code> aren't specified when
        creating a supported volume, the values are inherited from the parent
        directory. The <code>label</code> element contains the MAC (eg SELinux)
        label string.
        For existing directory or filesystem based volumes, these fields
        will be filled with the values used by the existing file.
M
Matthew Booth 已提交
631
        <span class="since">Since 0.4.1</span>
632
      </dd>
633 634 635 636 637
      <dt><code>compat</code></dt>
      <dd>Specify compatibility level. So far, this is only used for
        <code>type='qcow2'</code> volumes. Valid values are <code>0.10</code>
        and <code>1.1</code> so far, specifying QEMU version the images should
        be compatible with. If the <code>feature</code> element is present,
638 639 640
        1.1 is used.
        <span class="since">Since 1.1.0</span> If omitted, 0.10 is used.
        <span class="since">Since 1.1.2</span>
641
      </dd>
C
Chunyan Liu 已提交
642 643 644 645 646 647
      <dt><code>nocow</code></dt>
      <dd>Turn off COW of the newly created volume. So far, this is only valid
        for a file image in btrfs file system. It will improve performance when
        the file image is used in VM. To create non-raw file images, it
        requires QEMU version since 2.1. <span class="since">Since 1.2.7</span>
      </dd>
648 649 650 651 652
      <dt><code>features</code></dt>
      <dd>Format-specific features. Only used for <code>qcow2</code> now.
        Valid sub-elements are:
        <ul>
          <li><code>&lt;lazy_refcounts/&gt;</code> - allow delayed reference
653
          counter updates. <span class="since">Since 1.1.0</span></li>
654 655
        </ul>
      </dd>
656 657
    </dl>

658 659 660 661 662 663 664 665 666 667
    <h3><a name="StorageVolBacking">Backing store elements</a></h3>

    <p>
      A single <code>backingStore</code> element is contained within the top level
      <code>volume</code> element. This tag is used to describe the optional copy
      on write, backing store for the storage volume. It can contain the following
      child elements:
    </p>

    <pre>
668 669 670 671 672 673 674 675 676 677 678 679
  ...
  &lt;backingStore&gt;
    &lt;path&gt;/var/lib/virt/images/master.img&lt;/path&gt;
    &lt;format type='raw'/&gt;
    &lt;permissions&gt;
      &lt;owner&gt;107&lt;/owner&gt;
      &lt;group&gt;107&lt;/group&gt;
      &lt;mode&gt;0744&lt;/mode&gt;
      &lt;label&gt;virt_image_t&lt;/label&gt;
    &lt;/permissions&gt;
  &lt;/backingStore&gt;
&lt;/volume&gt;</pre>
680 681 682 683

    <dl>
      <dt><code>path</code></dt>
      <dd>Provides the location at which the backing store can be accessed on
M
Matthew Booth 已提交
684
        the local filesystem, as an absolute path. If omitted, there is no
685
        backing store for this volume.
M
Matthew Booth 已提交
686
        <span class="since">Since 0.6.0</span></dd>
687 688
      <dt><code>format</code></dt>
      <dd>Provides information about the pool specific backing store format.
M
Matthew Booth 已提交
689 690
        For disk pools it will provide the partition type. For filesystem
        or directory pools it will provide the file format type, eg cow,
691 692
        qcow, vmdk, raw. The actual format is specified via the type attribute.
        Consult the pool-specific docs for the list of valid
693 694 695 696 697
        values. Most file formats require a backing store of the same format,
        however, the qcow2 format allows a different backing store format.
        <span class="since">Since 0.6.0</span></dd>
      <dt><code>permissions</code></dt>
      <dd>Provides information about the permissions of the backing file.
698 699
          See volume <code>permissions</code> documentation for explanation
          of individual fields.
M
Matthew Booth 已提交
700
        <span class="since">Since 0.6.0</span>
701 702 703
      </dd>
    </dl>

704 705 706 707 708 709 710 711 712 713
    <h2><a name="examples">Example configuration</a></h2>

    <p>
      Here are a couple of examples, for a more complete set demonstrating
      every type of storage pool, consult the <a href="storage.html">storage driver page</a>
    </p>

    <h3><a name="exampleFile">File based storage pool</a></h3>

    <pre>
714 715 716 717 718 719
&lt;pool type="dir"&gt;
  &lt;name&gt;virtimages&lt;/name&gt;
  &lt;target&gt;
    &lt;path&gt;/var/lib/virt/images&lt;/path&gt;
  &lt;/target&gt;
&lt;/pool&gt;</pre>
720 721 722 723

    <h3><a name="exampleISCSI">iSCSI based storage pool</a></h3>

    <pre>
724 725 726 727 728 729 730 731 732 733 734 735 736
&lt;pool type="iscsi"&gt;
  &lt;name&gt;virtimages&lt;/name&gt;
  &lt;source&gt;
    &lt;host name="iscsi.example.com"/&gt;
    &lt;device path="iqn.2013-06.com.example:iscsi-pool"/&gt;
    &lt;auth type='chap' username='myuser'&gt;
      &lt;secret usage='libvirtiscsi'/&gt;
    &lt;/auth&gt;
  &lt;/source&gt;
  &lt;target&gt;
    &lt;path&gt;/dev/disk/by-path&lt;/path&gt;
  &lt;/target&gt;
&lt;/pool&gt;</pre>
737 738 739 740

    <h3><a name="exampleVol">Storage volume</a></h3>

    <pre>
741 742 743 744 745 746 747 748 749 750 751 752 753 754
&lt;volume&gt;
  &lt;name&gt;sparse.img&lt;/name&gt;
  &lt;allocation&gt;0&lt;/allocation&gt;
  &lt;capacity unit="T"&gt;1&lt;/capacity&gt;
  &lt;target&gt;
    &lt;path&gt;/var/lib/virt/images/sparse.img&lt;/path&gt;
    &lt;permissions&gt;
      &lt;owner&gt;107&lt;/owner&gt;
      &lt;group&gt;107&lt;/group&gt;
      &lt;mode&gt;0744&lt;/mode&gt;
      &lt;label&gt;virt_image_t&lt;/label&gt;
    &lt;/permissions&gt;
  &lt;/target&gt;
&lt;/volume&gt;</pre>
755 756 757 758

    <h3><a name="exampleLuks">Storage volume using LUKS</a></h3>

    <pre>
759 760 761 762 763 764 765 766 767 768 769
&lt;volume&gt;
  &lt;name&gt;MyLuks.img&lt;/name&gt;
  &lt;capacity unit="G"&gt;5&lt;/capacity&gt;
  &lt;target&gt;
    &lt;path&gt;/var/lib/virt/images/MyLuks.img&lt;/path&gt;
    &lt;format type='raw'/&gt;
    &lt;encryption format='luks'&gt;
      &lt;secret type='passphrase' uuid='f52a81b2-424e-490c-823d-6bd4235bc572'/&gt;
    &lt;/encryption&gt;
  &lt;/target&gt;
&lt;/volume&gt;
770
    </pre>
771 772
  </body>
</html>