formatsnapshot.html.in 15.5 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE html>
3
<html xmlns="http://www.w3.org/1999/xhtml">
4 5 6 7 8
  <body>
    <h1>Snapshot XML format</h1>

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

9
    <h2><a id="SnapshotAttributes">Snapshot XML</a></h2>
10

11 12 13 14
    <p>
      There are several types of snapshots:
    </p>
    <dl>
15
      <dt>disk snapshot</dt>
16 17 18 19 20 21 22 23 24 25 26 27 28
      <dd>Contents of disks (whether a subset or all disks associated
        with the domain) are saved at a given point of time, and can
        be restored back to that state.  On a running guest, a disk
        snapshot is likely to be only crash-consistent rather than
        clean (that is, it represents the state of the disk on a
        sudden power outage, and may need fsck or journal replays to
        be made consistent); on an inactive guest, a disk snapshot is
        clean if the disks were clean when the guest was last shut
        down.  Disk snapshots exist in two forms: internal (file
        formats such as qcow2 track both the snapshot and changes
        since the snapshot in a single file) and external (the
        snapshot is one file, and the changes since the snapshot are
        in another file).</dd>
29
      <dt>memory state (or VM state)</dt>
30 31 32 33 34 35
      <dd>Tracks only the state of RAM and all other resources in use
        by the VM.  If the disks are unmodified between the time a VM
        state snapshot is taken and restored, then the guest will
        resume in a consistent state; but if the disks are modified
        externally in the meantime, this is likely to lead to data
        corruption.</dd>
36
      <dt>full system</dt>
37
      <dd>A combination of disk snapshots for all disks as well as VM
38
        memory state, which can be used to resume the guest from where it
39 40 41 42 43 44 45
        left off with symptoms similar to hibernation (that is, TCP
        connections in the guest may have timed out, but no files or
        processes are lost).</dd>
    </dl>

    <p>
      Libvirt can manage all three types of snapshots.  For now, VM
46
      state (memory) snapshots are created only by
47 48 49 50 51 52 53 54 55 56 57
      the <code>virDomainSave()</code>, <code>virDomainSaveFlags</code>,
      and <code>virDomainManagedSave()</code> functions, and restored
      via the <code>virDomainRestore()</code>,
      <code>virDomainRestoreFlags()</code>, <code>virDomainCreate()</code>,
      and <code>virDomainCreateWithFlags()</code> functions (as well
      as via domain autostart).  With managed snapshots, libvirt
      tracks all information internally; with save images, the user
      tracks the snapshot file, but libvirt provides functions such
      as <code>virDomainSaveImageGetXMLDesc()</code> to work with
      those files.
    </p>
58 59
    <p>Full system snapshots are created
      by <code>virDomainSnapshotCreateXML()</code> with no flags, while
60
      disk snapshots are created by the same function with
61 62 63
      the <code>VIR_DOMAIN_SNAPSHOT_CREATE_DISK_ONLY</code>
      flag. Regardless of the flags provided, restoration of the
      snapshot is handled by
64 65 66 67 68 69 70
      the <code>virDomainRevertToSnapshot()</code> function.  For
      these types of snapshots, libvirt tracks each snapshot as a
      separate <code>virDomainSnapshotPtr</code> object, and maintains
      a tree relationship of which snapshots descended from an earlier
      point in time.
    </p>

71 72 73
    <p>
      Attributes of libvirt snapshots are stored as child elements of
      the <code>domainsnapshot</code> element.  At snapshot creation
74 75 76
      time, normally only the <code>name</code>, <code>description</code>,
      and <code>disks</code> elements are settable; the rest of the
      fields are ignored on creation, and will be filled in by
77 78 79 80 81
      libvirt in for informational purposes
      by <code>virDomainSnapshotGetXMLDesc()</code>.  However, when
      redefining a snapshot (<span class="since">since 0.9.5</span>),
      with the <code>VIR_DOMAIN_SNAPSHOT_CREATE_REDEFINE</code> flag
      of <code>virDomainSnapshotCreateXML()</code>, all of the XML
82 83
      described here is relevant on input, even the fields that are
      normally described as readonly for output.
84 85 86 87 88 89 90 91 92 93 94
    </p>
    <p>
      Snapshots are maintained in a hierarchy.  A domain can have a
      current snapshot, which is the most recent snapshot compared to
      the current state of the domain (although a domain might have
      snapshots without a current snapshot, if snapshots have been
      deleted in the meantime).  Creating or reverting to a snapshot
      sets that snapshot as current, and the prior current snapshot is
      the parent of the new snapshot.  Branches in the hierarchy can
      be formed by reverting to a snapshot with a child, then creating
      another snapshot.
95 96 97 98 99 100 101
    </p>
    <p>
      The top-level <code>domainsnapshot</code> element may contain
      the following elements:
    </p>
    <dl>
      <dt><code>name</code></dt>
E
Eric Blake 已提交
102 103 104
      <dd>The optional name for this snapshot.  If the name is
        omitted, libvirt will create a name based on the time of the
        creation.
105 106
      </dd>
      <dt><code>description</code></dt>
E
Eric Blake 已提交
107 108 109
      <dd>An optional human-readable description of the snapshot.  If
        the description is omitted when initially creating the
        snapshot, then this field will be empty.
110
      </dd>
111 112 113 114 115 116 117 118 119 120 121
      <dt><code>memory</code></dt>
      <dd>On input, this is an optional request for how to handle VM
        memory state.  For an offline domain or a disk-only snapshot,
        attribute <code>snapshot</code> must be <code>no</code>, since
        there is no VM state saved; otherwise, the attribute can
        be <code>internal</code> if the memory state is piggy-backed with
        other internal disk state, or <code>external</code> along with
        a second attribute <code>file</code> giving the absolute path
        of the file holding the VM memory state.  <span class="since">Since
        1.0.1</span>
      </dd>
122 123 124 125 126 127 128 129 130
      <dt><code>disks</code></dt>
      <dd>On input, this is an optional listing of specific
        instructions for disk snapshots; it is needed when making a
        snapshot of only a subset of the disks associated with a
        domain, or when overriding the domain defaults for how to
        snapshot each disk, or for providing specific control over
        what file name is created in an external snapshot.  On output,
        this is fully populated to show the state of each disk in the
        snapshot, including any properties that were generated by the
131 132 133 134
        hypervisor defaults.  For full system snapshots, this field is
        ignored on input and omitted on output (a full system snapshot
        implies that all disks participate in the snapshot process).
        This element has a list of <code>disk</code>
135 136 137 138 139 140 141
        sub-elements, describing anywhere from zero to all of the
        disks associated with the domain.  <span class="since">Since
        0.9.5</span>
        <dl>
          <dt><code>disk</code></dt>
          <dd>This sub-element describes the snapshot properties of a
            specific disk.  The attribute <code>name</code> is
142
            mandatory, and must match either the <code>&lt;target
143 144
            dev='name'/&gt;</code> (recommended) or an unambiguous
            <code>&lt;source file='name'/&gt;</code> of one of
145 146 147
            the <a href="formatdomain.html#elementsDisks">disk
            devices</a> specified for the domain at the time of the
            snapshot.  The attribute <code>snapshot</code> is
148
            optional, and the possible values are the same as the
149
            <code>snapshot</code> attribute for
150
             <a href="formatdomain.html#elementsDisks">disk devices</a>
151 152 153 154 155
            (<code>no</code>, <code>internal</code>,
            or <code>external</code>).  Some hypervisors like ESX
            require that if specified, the snapshot mode must not
            override any snapshot mode attached to the corresponding
            domain disk, while others like qemu allow this field to
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
            override the domain default.

            <dl>
              <dt><code>source</code></dt>
              <dd>If the snapshot mode is external (whether specified
              or inherited), then there is an optional sub-element
              <code>source</code>, with an attribute <code>file</code>
              giving the name of the new file.
              If <code>source</code> is not
              given and the disk is backed by a local image file (not
              a block device or remote storage), a file name is
              generated that consists of the existing file name
              with anything after the trailing dot replaced by the
              snapshot name.  Remember that with external
              snapshots, the original file name becomes the read-only
              snapshot, and the new file name contains the read-write
              delta of all disk changes since the snapshot.
              </dd>
              <dt><code>driver</code></dt>
              <dd>An optional sub-element <code>driver</code>,
              with an attribute <code>type</code> giving the driver type (such
              as qcow2), of the new file created by the external
              snapshot of the new file.
              </dd>
            </dl>
181 182 183 184 185 186 187 188 189 190 191 192 193

            <span class="since">Since 1.2.2</span> the <code>disk</code> element
            supports an optional attribute <code>type</code> if the
            <code>snapshot</code> attribute is set to <code>external</code>.
            This attribute specifies the snapshot target storage type and allows
            to overwrite the default <code>file</code> type. The <code>type</code>
            attribute along with the format of the <code>source</code>
            sub-element is identical to the <code>source</code> element used in
            domain disk definitions. See the
            <a href="formatdomain.html#elementsDisks">disk devices</a> section
            documentation for further information.

            Libvirt currently supports the <code>type</code> element in the qemu
194 195 196
            driver and supported values are <code>file</code>, <code>block</code>
            and <code>network</code> with a protocol of <code>gluster</code>
            <span class="since">(since 1.2.2)</span>.
197 198 199
          </dd>
        </dl>
      </dd>
200
      <dt><code>creationTime</code></dt>
E
Eric Blake 已提交
201 202 203
      <dd>A readonly representation of the time this snapshot was
        created.  The time is specified in seconds since the Epoch,
        UTC (i.e. Unix time).
204 205
      </dd>
      <dt><code>state</code></dt>
E
Eric Blake 已提交
206 207 208 209 210
      <dd>A readonly representation of the state of the domain at the
        time this snapshot was taken.  If a full system snapshot was
        created, then this is the state of the domain at that
        time. When the domain is reverted to this snapshot, the
        domain's state will default to this state, unless overridden
211
        by <code>virDomainRevertToSnapshot()</code> flags to revert to
E
Eric Blake 已提交
212 213 214 215 216
        a running or paused state. Additionally, this field can be the
        value "disk-snapshot" (<span class="since">since 0.9.5</span>)
        when it represents only a disk snapshot (no VM memory state),
        and reverting to this snapshot will default to an inactive
        guest.
217 218
      </dd>
      <dt><code>parent</code></dt>
E
Eric Blake 已提交
219 220 221 222 223
      <dd>An optional readonly representation of the parent of this
        snapshot.  If present, this element contains exactly one child
        element, <code>name</code>.  This specifies the name of the
        parent snapshot of this snapshot, and is used to represent
        trees of snapshots.
224 225
      </dd>
      <dt><code>domain</code></dt>
E
Eric Blake 已提交
226 227 228 229 230 231
      <dd>A readonly representation of the domain that this snapshot
        was taken against.  Older versions of libvirt stored only a
        single child element, uuid; reverting to a snapshot like this
        is risky if the current state of the domain differs from the
        state that the domain was created in, and requires the use of
        the <code>VIR_DOMAIN_SNAPSHOT_REVERT_FORCE</code> flag
232
        in <code>virDomainRevertToSnapshot()</code>.  Newer versions
E
Eric Blake 已提交
233 234 235 236 237 238 239
        of libvirt (<span class="since">since 0.9.5</span>) store the
        entire inactive <a href="formatdomain.html">domain
        configuration</a> at the time of the snapshot
        (<span class="since">since 0.9.5</span>). The domain will have
        security-sensitive information omitted
        unless the flag <code>VIR_DOMAIN_SNAPSHOT_XML_SECURE</code> is
        provided on a read-write connection.
240
      </dd>
241
      <dt><code>cookie</code></dt>
E
Eric Blake 已提交
242 243 244 245 246
      <dd>An optional readonly representation of a save image cookie
        containing additional data libvirt may need to properly
        restore a domain from an active snapshot when such data cannot
        be stored directly in the <code>domain</code> to maintain
        compatibility with older libvirt or hypervisor.
247
      </dd>
248 249
    </dl>

250
    <h2><a id="example">Examples</a></h2>
251

252 253
    <p>Using this XML to create a disk snapshot of just vda on a qemu
      domain with two disks:</p>
254
    <pre>
255
&lt;domainsnapshot&gt;
256
  &lt;description&gt;Snapshot of OS install and updates&lt;/description&gt;
257
  &lt;disks&gt;
258
    &lt;disk name='vda'&gt;
259 260 261 262
      &lt;source file='/path/to/new'/&gt;
    &lt;/disk&gt;
    &lt;disk name='vdb' snapshot='no'/&gt;
  &lt;/disks&gt;
263 264 265
&lt;/domainsnapshot&gt;</pre>

    <p>will result in XML similar to this from
266
      <code>virDomainSnapshotGetXMLDesc()</code>:</p>
267 268 269
    <pre>
&lt;domainsnapshot&gt;
  &lt;name&gt;1270477159&lt;/name&gt;
270 271 272 273 274 275
  &lt;description&gt;Snapshot of OS install and updates&lt;/description&gt;
  &lt;state&gt;running&lt;/state&gt;
  &lt;creationTime&gt;1270477159&lt;/creationTime&gt;
  &lt;parent&gt;
    &lt;name&gt;bare-os-install&lt;/name&gt;
  &lt;/parent&gt;
276
  &lt;memory snapshot='no'/&gt;
277 278 279 280 281 282 283
  &lt;disks&gt;
    &lt;disk name='vda' snapshot='external'&gt;
      &lt;driver type='qcow2'/&gt;
      <b>&lt;source file='/path/to/new'/&gt;</b>
    &lt;/disk&gt;
    &lt;disk name='vdb' snapshot='no'/&gt;
  &lt;/disks&gt;
284
  &lt;domain&gt;
285
    &lt;name&gt;fedora&lt;/name&gt;
286
    &lt;uuid&gt;93a5c045-6457-2c09-e56c-927cdf34e178&lt;/uuid&gt;
287 288
    &lt;memory&gt;1048576&lt;/memory&gt;
    ...
289 290 291 292 293 294 295 296 297 298 299 300
    &lt;devices&gt;
      &lt;disk type='file' device='disk'&gt;
        &lt;driver name='qemu' type='raw'/&gt;
        <b>&lt;source file='/path/to/old'/&gt;</b>
        &lt;target dev='vda' bus='virtio'/&gt;
      &lt;/disk&gt;
      &lt;disk type='file' device='disk' snapshot='external'&gt;
        &lt;driver name='qemu' type='raw'/&gt;
        &lt;source file='/path/to/old2'/&gt;
        &lt;target dev='vdb' bus='virtio'/&gt;
      &lt;/disk&gt;
      ...
301
    &lt;/devices&gt;
302 303
  &lt;/domain&gt;
&lt;/domainsnapshot&gt;</pre>
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332

    <p>With that snapshot created, <code>/path/to/old</code> is the
      read-only backing file to the new active
      file <code>/path/to/new</code>.  The <code>&lt;domain&gt;</code>
      element within the snapshot xml records the state of the domain
      just before the snapshot; a call
      to <code>virDomainGetXMLDesc()</code> will show that the domain
      has been changed to reflect the snapshot:
    </p>
    <pre>
&lt;domain&gt;
  &lt;name&gt;fedora&lt;/name&gt;
  &lt;uuid&gt;93a5c045-6457-2c09-e56c-927cdf34e178&lt;/uuid&gt;
  &lt;memory&gt;1048576&lt;/memory&gt;
  ...
  &lt;devices&gt;
    &lt;disk type='file' device='disk'&gt;
      &lt;driver name='qemu' type='qcow2'/&gt;
      <b>&lt;source file='/path/to/new'/&gt;</b>
      &lt;target dev='vda' bus='virtio'/&gt;
    &lt;/disk&gt;
    &lt;disk type='file' device='disk' snapshot='external'&gt;
      &lt;driver name='qemu' type='raw'/&gt;
      &lt;source file='/path/to/old2'/&gt;
      &lt;target dev='vdb' bus='virtio'/&gt;
    &lt;/disk&gt;
    ...
  &lt;/devices&gt;
&lt;/domain&gt;</pre>
333 334
  </body>
</html>