news.xml 73.4 KB
Newer Older
1 2 3 4 5 6 7
<?xml version="1.0"?>

<!-- libvirt release notes

     This file will be processed to produce both HTML and plain text versions
     of the release notes.

8 9 10 11 12 13 14 15 16 17 18
     Keep the style consistent with existing entries as much as possible.

     Each change should be documented by a short, one-sentence summary, which
     should fit in a single line and should not contain any formatting tags.

     You can optionally add a description if you feel like the summary alone is
     not enough to document the change accurately. The description may contain
     a <code> tag for switching to non-proportional font. No other tags are
     allowed.

     Lines should be kept under 80 columns, and should not exceed 100 columns.
19

20
     This file is validated against docs/news.rng schema.
21

22 23 24 25 26 27 28 29 30 31 32 33
     Use the following template to add a new release section:

  <release version="FIXME" date="unreleased">
    <section title="New features">
    </section>
    <section title="Improvements">
    </section>
    <section title="Bug fixes">
    </section>
  </release>

     -->
34 35

<libvirt>
36 37
  <release version="v3.10.0" date="unreleased">
    <section title="New features">
38 39 40 41 42 43 44 45
      <change>
        <summary>
          conf: Support defining distances between virtual NUMA cells
        </summary>
        <description>
          A NUMA hardware architecture supports the notion of distances
          between NUMA cells. This can now be specified using the
          <code>&lt;distances&gt;</code> element within the NUMA cell
46
          configuration. Drivers which support this include Xen and QEMU.
47 48 49 50 51 52 53 54 55 56 57
        </description>
      </change>
      <change>
        <summary>
          Xen: Support defining vNUMA topology
        </summary>
        <description>
          Xen now supports defining a virtual NUMA topology for VMs,
          including specifying distances between NUMA cells.
        </description>
      </change>
58 59 60 61 62 63 64 65 66 67
      <change>
        <summary>
          qemu: Add the ability to configure HPT resizing for pSeries guests
        </summary>
        <description>
          The user can now decide whether HPT (Hash Page Table) resizing
          should be enabled, disabled or required instead of leaving it up to
          hypervisor defaults and negotiation between the guest and the host.
        </description>
      </change>
68 69 70 71 72 73 74 75 76 77 78
      <change>
        <summary>
          qemu: Add vmcoreinfo feature
        </summary>
        <description>
          Starting with QEMU 2.11, the guest can save kernel debug
          details when this feature is enabled and the kernel supports
          it. It is useful to process kernel dump with KASLR enabled,
          and also provides various kernel details to crash tools.
        </description>
      </change>
79 80
    </section>
    <section title="Improvements">
D
Dawid Zamirski 已提交
81 82 83 84 85
      <change>
        <summary>
          vbox: Add VirtualBox 5.2 support
        </summary>
      </change>
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
      <change>
        <summary>
          vbox: Add support for configuring storage controllers
        </summary>
        <description>
          The VirtualBox driver now supports the <code>&lt;controller&gt;</code>
          element in the domain XML for configuring storage controllers in VBOX
          VMs.  Additionally, libvirt's domain XML schema was updated to allow
          optional <code>model</code> attribute for <code>&lt;controller
              type='ide'&gt;</code> which is used by the VBOX driver to set the
          IDE controller model to be one of 'piix4', 'piix4' (default), or
          'ich6'.  Finally, with this change <code>dumpxml</code> generates
          <code>&lt;controller&gt;</code> elements that correspond to current
          VBOX VM storage controller configuration.
        </description>
      </change>
      <change>
        <summary>
          vbox: Add support for attaching empty removable disks
        </summary>
        <description>
          The VirutalBox driver now supports adding CD-ROM and floppy disk
          devices that do not have the disk source specified. Previously such
          devices were silently ignored.
        </description>
      </change>
      <change>
        <summary>
          vbox: Add support for attaching SAS storage controllers
        </summary>
        <description>
          In VirtualBox, SCSI and SAS are distinct controller types whereas
          libvirt does not make such distinction. Therefore, the VBOX driver was
          updated to allow attaching SAS controllers via <code>&lt;controller
              type='scsi' model='lsisas1068'&gt;</code> element. If there are
          both SCSI and SAS controllers present in the VBOX VM, the domain XML
          can associate the disk device using the <code>&lt;address&gt;</code>
          element with the <code>controller</code> attribute, and optionally,
          set the port via <code>unit</code> attribute.
        </description>
      </change>
127 128 129 130 131 132 133 134 135 136 137
      <change>
        <summary>
          qemu: Generate predictable paths for qemu memory backends
        </summary>
        <description>
          In some cases management applications need to know
          paths passed to memory-backend-file objects upfront.
          Libvirt now generates predictable paths so applications
          can prepare the files if they need to do so.
        </description>
      </change>
138 139
    </section>
    <section title="Bug fixes">
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
      <change>
        <summary>
          vbox: Do not ignore failures to attach disk devices when defining
        </summary>
        <description>
          The <code>define</code> now fails and reports an error if any of the
          <code>controller</code> or <code>disk</code> devices specified in the
          domain XML fail to attach to the VirtualBox VM.
        </description>
      </change>
      <change>
        <summary>
          vbox: Fix dumpxml to always output disk devices
        </summary>
        <description>
          The VirtualBox driver was ignoring any disk devices in
          <code>dumpxml</code> output if there was a SAS storage controller
          attached to the VM.
        </description>
      </change>
      <change>
        <summary>
          vbox: Fix dumpxml to always generate valid domain XML
        </summary>
        <description>
          When a VirtualBox VM has multiple disks attached, each to a different
          storage controller that uses 'sd' prefix for block device names e.g.
          one disk attached to SATA and one to SCSI controller, it no longer
          generates XML where both would have 'sda' device name assigned.
          Instead it properly assigns 'sda' and 'sdb' to those disks in the
          order of appearance.
        </description>
      </change>
173 174
    </section>
  </release>
D
Daniel Veillard 已提交
175
  <release version="v3.9.0" date="2017-11-02">
P
Peter Krempa 已提交
176
    <section title="New features">
177 178 179 180 181
      <change>
        <summary>
          Add capability to allow hot (un)plug of a domain watchdog device
        </summary>
      </change>
M
Michal Privoznik 已提交
182 183 184 185 186 187 188 189 190
      <change>
        <summary>
          Allow users to set device aliases
        </summary>
        <description>
          Users can set aliases to domain devices and thus identify them
          easily.
        </description>
      </change>
A
Andrea Bolognani 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
      <change>
        <summary>
          qemu: Support multiqueue for virtio-blk
        </summary>
        <description>
          Multiqueue support for <code>virtio-blk</code> has been available
          in QEMU ever since 2.7.0, and now libvirt guests can enable it.
        </description>
      </change>
      <change>
        <summary>
          Add virDomainSetLifecycleAction API
        </summary>
        <description>
          Provided a new API to allow dynamic guest lifecycle control for
          guest reactions to poweroff, restart, or crash type events related
          to the domain XML <code>on_poweroff</code>, <code>on_reboot</code>,
          and <code>on_crash</code> elements. The
          <code>virsh set-lifecycle-action</code> command was created to
          control the actions.
        </description>
      </change>
      <change>
        <summary>
          qemu: Allow cold(un)plugging and hot(un)plugging input devices
        </summary>
      </change>
      <change>
        <summary>
          net: Implement QoS for vhostuser
        </summary>
      </change>
P
Peter Krempa 已提交
223 224
    </section>
    <section title="Improvements">
J
John Ferlan 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237
      <change>
        <summary>
          Allow a logical volume to be create using LUKS
        </summary>
        <description>
          A logical volume may be created using an <code>encryption</code>
          element using "luks" format. This does require a previously created
          <code>secret</code> to store the passphrase used to encrypt the
          volume Adding the volume to a domain can then either provide the
          secret or allow the consumer in the guest to provide the passphrase
          in order to decrypt the volume.
        </description>
      </change>
A
Andrea Bolognani 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
      <change>
        <summary>
          net: Ignore auto-generated MAC address when detaching an interface
        </summary>
        <description>
          If the MAC address has not been specified by the user, libvirt will
          try and fill in the gaps by generating one; however, for some error
          paths that led to some confusing error messages, so when an
          auto-generated MAC address is specified the error message will not
          include the auto-generated MAC.
        </description>
      </change>
      <change>
        <summary>
          net: Enable MAC address lookup for virDomainInterfaceStats
        </summary>
      </change>
      <change>
        <summary>
          apparmor: Several improvements
        </summary>
        <description>
          Changes include permitting access to data about USB devices and
          <code>dnsmasq</code> instances, allowing spaces in guest names and
          many more.
        </description>
      </change>
      <change>
        <summary>
          cpu: Use CPU information obtained from QEMU when possible
        </summary>
        <description>
          Recent QEMU versions can expose information about which CPU models
          are available and usable on the host; libvirt will now make use of
          such information whenever possible.
        </description>
      </change>
      <change>
        <summary>
          hyperv: Various improvements
        </summary>
        <description>
          The error reported when clients can't connect to Hyper-V has been
          made more descriptive, and memory limits for guests are now mapped
          to more appropriate libvirt equivalents.
        </description>
      </change>
      <change>
        <summary>
          qemu: Report QEMU error on failed migration
        </summary>
        <description>
          Instead of reporting a generic error, ask QEMU for a more detailed
          and thus hopefully more helpful one.
        </description>
      </change>
      <change>
        <summary>
          vbox: Implement autoport for RDP
        </summary>
        <description>
          libvirt will now obtain the (dynamically allocated) RDP port number
          from VirtualBox itself, avoiding conflicts between multiple guests
          wanting to use RDP at the same time.
        </description>
      </change>
      <change>
        <summary>
          qemu: Allow rotation of small logs
        </summary>
        <description>
          On a host where numerous unique instances are executed per day, it's
          quite possible that, even though each of the single log files are
          fairly small, collectively the quantity and volume may add tens of
          thousands of log files to the <code>/var/log/libvirt/qemu/</code>
          directory. Removing the constraints that log have to be bigger than
          100 KiB before they can be rotated solves the issue.
        </description>
      </change>
P
Peter Krempa 已提交
317 318
    </section>
    <section title="Bug fixes">
319 320 321 322 323 324 325 326 327 328 329
      <change>
        <summary>
          Fix swapped interface statistics and QoS
        </summary>
        <description>
          Due to internal implementation, reported statistics for
          some types of interfaces were swapped (RX appeared in
          TX and vice versa). Similarly, QoS was set in reversed
          way.
        </description>
      </change>
J
John Ferlan 已提交
330 331 332 333 334 335 336 337 338 339
      <change>
        <summary>
          Properly resize local LUKS encrypted volume
        </summary>
        <description>
          Resizing of a local LUKS encrypted volume will now use qemu-img
          to resize the volume. This will require configuring a secret for
          the LUKS encrypted volume.
        </description>
      </change>
A
Andrea Bolognani 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
      <change>
        <summary>
          qemu: Reserve PCI addresses for implicit i440fx devices
        </summary>
        <description>
          Failing to do so causes the addresses to be considered usable by
          libvirt, which means they could be assigned to more than one device
          resulting in the guest failing to start.
        </description>
      </change>
      <change>
        <summary>
          spec: Restart libvirtd only at the end of the upgrade process
        </summary>
        <description>
          Use <code>%posttrans</code> to make sure <code>libvirtd</code>
          is not restarted before all other components, such as the library
          itself and storage / hypervisor drivers, have already been upgraded.
        </description>
      </change>
    </section>
    <section title="Security">
      <change>
        <summary>
          qemu: Ensure TLS clients always verify the server certificate
        </summary>
        <description>
          While it's reasonable to turn off client certificate validation,
          as setting it up can be non-trivial, clients should always verify
          the server certificate to avoid MITM attacks. However, libvirt was
          using the same knob to control both checks, leading to
          CVE-2017-1000256 / LSN-2017-0002.
        </description>
      </change>
P
Peter Krempa 已提交
374 375
    </section>
  </release>
D
Daniel Veillard 已提交
376
  <release version="v3.8.0" date="2017-10-04">
377
    <section title="New features">
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
      <change>
        <summary>
          qemu: Added support for cold-(un)plug of watchdog devices
        </summary>
      </change>
      <change>
        <summary>
          qemu: Added support for setting IP address os usernet interfaces
        </summary>
      </change>
      <change>
        <summary>
          qemu: Added support for Veritas Hyperscale (VxHS) block devices
        </summary>
      </change>
      <change>
        <summary>
          storage: Added new events for pool-build and pool-delete
        </summary>
      </change>
398 399
    </section>
    <section title="Improvements">
400 401 402 403 404 405 406 407 408 409 410 411
      <change>
        <summary>
          qemu: Set DAC permissions properly for spice rendernode
        </summary>
        <description>
          When a <code>rendernode</code> path is set for SPICE GL on
          <code>qemu:///system</code>, we now correctly set DAC permissions
          on the device at VM startup. This is the last remaining hurdle to
          let SPICE GL work for <code>qemu:///system</code> without any
          external host changes.
        </description>
      </change>
412 413 414 415 416 417 418
      <change>
        <summary>
          nodedev: Add switchdev offload query to NIC capabilities
        </summary>
        <description>
            Allow querying the NIC interface capabilities for the
            availability of switchdev offloading (also known as
419
            kernel-forward-plane-offload).
420 421
        </description>
      </change>
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
      <change>
        <summary>
          New CPU models for AMD and Intel
        </summary>
        <description>
          AMD EPYC and Intel Skylake-Server CPU models were added together with
          their features
        </description>
      </change>
      <change>
        <summary>
          Improve long waiting when saving a domain
        </summary>
        <description>
          While waiting for a write to disk to be finished, e.g. during save,
          even simple operations like <code>virsh list</code> would be blocking
          due to domain lock. This is now resolved by unlocking the domain
          in places where it is not needed.
        </description>
      </change>
442 443
    </section>
    <section title="Bug fixes">
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
      <change>
        <summary>
          Proper units are now used in virsh manpage for dom(mem)stats
        </summary>
        <description>
          Previously the documentation used multiples of 1000, but now it is
          fixed to use multiples of 1024.
        </description>
      </change>
      <change>
        <summary>
          qemu: Fix error reporting when disk attachment fails
        </summary>
        <description>
          There was a possibility for the actual error to be overridden or
          cleared during the rollback.
        </description>
      </change>
      <change>
        <summary>
          qemu: Fix assignment of graphics ports after daemon restart
        </summary>
        <description>
          This could be seen with newer kernels that have bug regarding
          SO_REUSEADDR. After libvirtd was restarted it could assign already
          used address to new guests which would make them fail to start. This
          is fixed by marking used ports unavailable when reconnecting to
          running QEMU domains.
        </description>
      </change>
      <change>
        <summary>
          Fix message decoding which was causing a very strange bug
        </summary>
        <description>
          When parsing an RPC message with file descriptors was interrupted and
          had to restart, the offset of the payload was calculated badly causing
          strange issues like not being able to find a domain that was not
          requested.
        </description>
      </change>
485 486
    </section>
  </release>
D
Daniel Veillard 已提交
487
  <release version="v3.7.0" date="2017-09-04">
488
    <section title="New features">
489 490 491 492 493 494 495 496 497 498
      <change>
        <summary>
          qemu: Add managedsave-edit commands
        </summary>
        <description>
          Using managedsave-dumpxml, managedsave-define and managedsave-edit
          commands, now we can dump and edit the XML configuration of domain
          which has managedsave image.
        </description>
      </change>
499 500
      <change>
        <summary>
501 502 503 504 505 506 507 508
          qemu: Add migrate-getmaxdowntime command
        </summary>
        <description>
          Currently, the maximum tolerable downtime for a domain being migrated
          is write-only from libvirt, via migrate-setmaxdowntime. This
          implements a complementary migrate-getmaxdowntime command
        </description>
      </change>
509 510 511 512 513 514 515 516 517 518
      <change>
        <summary>
          bhyve: Support autoport for VNC ports
        </summary>
        <description>
          It's no longer necessary to explicitly specify VNC port for the bhyve
          guests. With the autoport feature it will be allocated automatically.
          Please refer to the bhyve driver documentation for examples.
        </description>
      </change>
519 520 521 522 523
      <change>
        <summary>
          qemu: Added support for setting heads of virtio GPU
        </summary>
      </change>
524 525 526 527 528 529 530 531 532
      <change>
        <summary>
          qemu: Added support to configure reconnect timeout for chardev devices
        </summary>
        <description>
          When you have a TCP or UNIX chardev device and it's connected somewhere
          you can configure reconnect timeout if the connection is closed.
        </description>
      </change>
533 534
    </section>
    <section title="Improvements">
P
Peter Krempa 已提交
535 536 537 538 539 540 541 542 543 544
      <change>
        <summary>
          qemu: Report a clear error when dropping a VM during startup
        </summary>
        <description>
          "Failed to load config for domain 'DOMNAME'" is now reported if a VM
          config can't be parsed for some reason, and thus provides a clear
          indication for users (and devs).
        </description>
      </change>
545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
      <change>
        <summary>
          apparmor: Update for QEMU 2.10 compatibility
        </summary>
        <description>
          Starting with QEMU 2.10, disk images and NVRAM files get
          automatically locked to prevent them from being corrupted; however,
          file locking needs to be explicitly allowed through
          <code>virt-aa-helper</code> or AppArmor will reject the requests and
          the guest will not be able to run.
        </description>
      </change>
      <change>
        <summary>
          virsh: List Unix sockets in 'domdisplay' output
        </summary>
        <description>
          VNC and SPICE graphics can use Unix sockets instead of TCP/IP sockets
          as connection endpoints, but such a configuration was not handled
          correctly by <code>virsh domdisplay</code>, causing the respective
          endpoints to be missing from the output.
        </description>
      </change>
      <change>
        <summary>
          qemu: Don't check whether offline migration is safe
        </summary>
        <description>
          Since offline migration only copies the guest definition to the
          destination host, data corruption is not a concern and the operation
          can always be performed safely.
        </description>
      </change>
      <change>
        <summary>
          virt-host-validate: Fix IOMMU detection on ppc64
        </summary>
      </change>
583 584
    </section>
    <section title="Bug fixes">
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
      <change>
        <summary>
          qemu: Better support for international domain names (with wide characters)
        </summary>
        <description>
          There were some issues with multi-byte domains getting lost
          on daemon restart due to truncation, so the code now handles
          multi-byte names a bit better.
        </description>
      </change>
      <change>
        <summary>
          qemu: Support long domain names with namespaces
        </summary>
        <description>
          Domains with extremely long names would fail to start due to
          temporary namespace paths being created with the whole name.
          The path is now generated with shortened name instead.
        </description>
      </change>
P
Peter Krempa 已提交
605 606 607 608 609 610 611 612 613 614 615 616
      <change>
        <summary>
          qemu: Tolerate missing emulator binary during libvirtd restart
        </summary>
        <description>
          For some time libvirt required qemu capabilities being present when
          parsing VM configs during startup. As a side effect VM configs would
          fail to parse and thus vanish, if the emulator binary would be
          uninstalled or broken. Libvirt now tolerates when capabilities
          are missing during startup.
        </description>
      </change>
617 618 619 620 621 622 623 624 625 626 627 628 629
      <change>
        <summary>
          qemu: Prevent pSeries guests from disappearing in some situations
        </summary>
        <description>
          pSeries guest would disappear if any of the host devices they were
          configured to use was not available during libvirtd startup, which
          could easily happen for SR-IOV Virtual Functions. This scenario is
          now handled correctly.
        </description>
      </change>
      <change>
        <summary>
630
          qemu: Honor &lt;on_reboot/&gt; setting
631 632 633 634 635 636 637
        </summary>
        <description>
          The setting was accepted by the parser, but not actually implemented.
        </description>
      </change>
      <change>
        <summary>
638
          Fix --verbose option for all daemons
639 640
        </summary>
        <description>
641
          Since v3.0.0, the option had been ignored by all libvirt daemons
642 643 644 645
          (<code>libvirtd</code>, <code>virtlogd</code> and
          <code>virtlockd</code>); it's now working as intended once again.
        </description>
      </change>
646 647
    </section>
  </release>
D
Daniel Veillard 已提交
648
  <release version="v3.6.0" date="2017-08-02">
J
John Ferlan 已提交
649
    <section title="New features">
650 651 652 653 654
      <change>
        <summary>
          hyperv: Implement virDomainSetMemory and virDomainSendKey APIs
        </summary>
      </change>
655 656 657 658 659 660 661 662 663 664 665
      <change>
        <summary>
          qemu: Support multiple PHBs for pSeries guests
        </summary>
        <description>
          pSeries guests can now have multiple PHBs (PCI Host Bridges), which
          show up as separate PCI domains in the guest. To create additional
          PHBs, simply add PCI controllers with model <code>pci-root</code>
          to the guest configuration.
        </description>
      </change>
666 667 668 669 670 671 672 673 674 675
      <change>
        <summary>
          qemu: Isolate hostdevs on pSeries guests
        </summary>
        <description>
          To enable better error reporting and recovery, unrelated hostdevs
          will now be automatically isolated on pSeries guests by placing them
          on separate PHBs (PCI Host Bridges).
        </description>
      </change>
J
John Ferlan 已提交
676 677
    </section>
    <section title="Improvements">
678 679 680 681 682 683 684 685 686 687 688 689
      <change>
        <summary>
          qemu: platform serial devices can now use chardev features
        </summary>
        <description>
          QEMU VMs that depend on platform serial devices can now use
          QEMU's <code>-chardev</code> option, which enables access to
          advanced features like log file configuration. This applies
          to the default serial devices for arm, aarch64, and some ppc
          configurations.
        </description>
      </change>
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
      <change>
        <summary>
          Require use of GCC 4.4 or Clang compilers
        </summary>
        <description>
          We only ever test libvirt with GCC or Clang (which
          provides a GCC compatible compilation environment).
          Between them, these compilers cover every supported
          operating system platform, including Windows.
        </description>
      </change>
      <change>
        <summary>
          qemu: shared disks with directsync cache should be safe for migration
        </summary>
        <description>
          At present shared disks can be migrated with either readonly or
707
          <code>cache=none</code>. But <code>cache=directsync</code> should be
708 709 710 711 712 713 714 715 716 717 718 719 720
          safe for migration, because both <code>cache=directsync</code> and
          <code>cache=none</code> don't use the host page cache, and
          <code>cache=direct</code> write through qemu block layer cache.
        </description>
      </change>
      <change>
        <summary>
          Handle hotplug change on VLAN configuration using OVS
        </summary>
        <description>
          Libvirt was taught to handle VLAN change for running OVS interface.
        </description>
      </change>
J
John Ferlan 已提交
721 722
    </section>
    <section title="Bug fixes">
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
      <change>
        <summary>
          qemu: Use vCPU 'node-id' property and pass it back to qemu
        </summary>
        <description>
          vCPU properties gathered from query-hotpluggable-cpus need to be
          passed back to QEMU. As QEMU did not use the node-id property until
          now and libvirt forgot to pass it back properly (it was parsed but
          not passed around) we did not honor this.
        </description>
      </change>
      <change>
        <summary>
          Miscellaneous stream fixes
        </summary>
        <description>
          After introducing sparse stream features there were still some known
          bugs left. Those are fixed in this release.
        </description>
      </change>
      <change>
        <summary>
A
Andrea Bolognani 已提交
745
          qemu: Miscellaneous domain NS fixes
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
        </summary>
        <description>
          Libvirt starts qemu domains in separate Linux namespaces for a while
          now. However, there were still some bugs lingering. For instance
          libvirt did not know how to handle file based bind mounts.
        </description>
      </change>
      <change>
        <summary>
          Various CPU driver improvements
        </summary>
        <description>
          There were some minor bugs when using 'host-model' CPU.
        </description>
      </change>
J
John Ferlan 已提交
761 762
    </section>
  </release>
D
Daniel Veillard 已提交
763
  <release version="v3.5.0" date="2017-07-04">
764
    <section title="New features">
765 766 767 768 769 770 771 772 773 774 775
      <change>
        <summary>
          qemu: Add support for loadparm for a boot device
        </summary>
        <description>
          Add an optional boot parameter 'loadparm' for a boot device.
          Loadparm is an 8 byte parameter that, when present, is queried by
          S390 guests via sclp or diag 308. Linux guests on S390 use it to
          select a boot entry.
        </description>
      </change>
776 777 778 779 780 781 782 783 784 785 786 787
      <change>
        <summary>
          Support controlling how video devices are exposed to the bhyve guests
        </summary>
        <description>
          The <code>vgaconf</code> attribute was added to <code>video</code>'s
          <code>driver</code> element. Possible values are: <code>on</code>,
          <code>off</code>, and <code>io</code>. It controlls the way how
          bhyve exposes video devices to its guests; various guest OSes might
          require different settings to boot properly.
        </description>
      </change>
788 789 790 791 792 793 794 795 796 797
      <change>
        <summary>
          qemu: Add support for live updates of coalesce settings
        </summary>
        <description>
          Users can now use <code>virsh update-device</code> to change
          the coalesce settings of an interfaces while the domain is
          running.
        </description>
      </change>
798 799 800 801 802 803 804 805 806
      <change>
        <summary>
          qemu: Allow VirtIO devices to use vIOMMU
        </summary>
        <description>
          It is now possible to turn on IOTBL for the vIOMMU and have VirtIO
          devices use it, provided they have been configured appropriately.
        </description>
      </change>
807 808
    </section>
    <section title="Improvements">
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
      <change>
        <summary>
          qemu: block copy job can be used with persistent domains
        </summary>
        <description>
          Until now it was not possible to use block copy with persistent VMs.
          In use cases where it's not required to recover the job after VM
          shutdown, it's possible to specify VIR_DOMAIN_BLOCK_COPY_TRANSIENT_JOB
          flag to start the copy job.
        </description>
      </change>
      <change>
        <summary>
          JSON pseudo-protocol backing store parser supports new format of qemu 2.9
        </summary>
        <description>
          QEMU 2.9 modified a few structures corresponding to the JSON format
          of specifying a backing store for a disk image. Libvirt now implements
          the new format.
        </description>
      </change>
830 831 832 833 834 835 836 837 838
      <change>
        <summary>
          Capabilities now include info about host's CAT settings
        </summary>
        <description>
          Various information about resource control from the host is
          gathered and presented in capabilities if available.
        </description>
      </change>
839 840 841 842 843 844 845 846 847 848 849 850 851 852
      <change>
        <summary>
          apparmor: Several improvements
        </summary>
        <description>
          Allow access to Ceph config, EFI firmware on both x86_64 and
          aarch64, device tree on ppc64 and more.
        </description>
      </change>
      <change>
        <summary>
          qemu: Support host-model on POWER9 machines
        </summary>
      </change>
853 854
    </section>
    <section title="Bug fixes">
855 856 857 858 859 860 861 862 863 864 865 866 867
      <change>
        <summary>
          qemu: snapshot: retrieve image metadata from user provided files
        </summary>
        <description>
          Disk images of an external snapshot created with
          VIR_DOMAIN_SNAPSHOT_CREATE_REUSE_EXT flag specified would not be
          scanned for metadata after recent changes.

          The metadata is necessary to allow keeping relative paths between
          images when doing a block-commit.
        </description>
      </change>
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
      <change>
        <summary>
          Parse decimal numbers in a locale-independent way
        </summary>
        <description>
          Some locales, such as <code>de_DE</code> and <code>pt_BR</code>,
          use comma rather than dot to separate the integer part from the
          fractional part of a decimal number; however, several data sources
          such as the kernel use a locale-independent representation and need
          to be treated accordingly.
        </description>
      </change>
      <change>
        <summary>
          Support compilation with newer compiler and libc versions
        </summary>
        <description>
          Several fixes have been included to make compilation with Clang
          4.0.0, GCC 7.1 and glibc >= 2.25.90 possible.
        </description>
      </change>
      <change>
        <summary>
          qemu: Query name for vhost-user interfaces at runtime
        </summary>
        <description>
          This makes it possible to use <code>virsh</code> subcommands such
          as <code>domiflist</code> and <code>domifstat</code> on vhost-user
          interfaces.
        </description>
      </change>
      <change>
        <summary>
          qemu: Set MTU for hotplugged interfaces correctly
        </summary>
        <description>
          When hotplugging a network interface, the MTU was only set on the
          guest side. Set it on the host side as well.
        </description>
      </change>
      <change>
        <summary>
          qemu: Forbid updating MTU for interfaces of running guests
        </summary>
        <description>
          The MTU setting can't be modified while the guest is running, so any
          attempt to alter it at runtime will now result in an error rather
          than being silently ignored.
        </description>
      </change>
      <change>
        <summary>
          qemu: Fix specifying QXL heads with older QEMU releases
        </summary>
        <description>
          Specifying the number of QXL heads was not working correctly for
          QEMU releases older than 1.6.
        </description>
      </change>
927 928 929 930 931 932 933 934 935 936 937 938
      <change>
        <summary>
          qemu: Fix migration to older libvirt/QEMU versions
        </summary>
        <description>
          When the guest is started, libvirt updates the CPU definition to
          reflect the actual CPU features to enforce ABI. We need to send
          original and updated CPU definition in order to support migration
          to older libvirt/QEMU versions. Only the updated CPU definition
          was sent to destination.
        </description>
      </change>
939 940
    </section>
  </release>
D
Daniel Veillard 已提交
941
  <release version="v3.4.0" date="2017-06-02">
942
    <section title="New features">
M
Michal Privoznik 已提交
943 944 945 946 947 948 949 950 951 952
      <change>
        <summary>
          Improved streams to efficiently transfer sparseness
        </summary>
        <description>
          New extension to virStream was implemented so that
          virStorageVolDownload and virStorageVolUpload can preserve file
          sparseness.
        </description>
      </change>
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
      <change>
        <summary>
          I/O APIC type can be specified for QEMU/KVM domains
        </summary>
        <description>
          The <code>ioapic</code> tag was added to domain
          <code>features</code>, so the type of the I/O APIC can now
          be specified (e.g. putting it in userspace for KVM domains).
        </description>
      </change>
      <change>
        <summary>
          The reason for VM shutdown is reported, if known
        </summary>
        <description>
          QEMU 2.10 will be able to report the reason for shutting
          down (whether that was caused by the guest or not), and
          libvirt is prepared for that and reports that information in
          its shutdown event as well, if it is known.
        </description>
      </change>
974 975
    </section>
    <section title="Improvements">
976 977 978 979 980 981 982 983 984 985 986
      <change>
        <summary>
          Repository now has new README.md file
        </summary>
        <description>
          The new file uses markdown syntax, so it looks better on
          github and possibly other web pages, but it has also more
          useful information. The old README is now symlink to the
          new file.
        </description>
      </change>
987 988 989 990 991 992 993 994 995 996 997
      <change>
        <summary>
          qemu: Use GICv2 by default for aarch64/virt TCG guests
        </summary>
        <description>
          The emulated GICv3 has some limitations that make it unusable as a
          default; use GICv2 until they're sorted out. This change makes it
          once again possible to run aarch64/virt guests on a x86_64 host
          without having to tweak their configuration.
        </description>
      </change>
B
Bjoern Walk 已提交
998 999 1000 1001 1002 1003 1004 1005 1006
      <change>
        <summary>
          Additional capabilities for the node_device module
        </summary>
        <description>
          Introduce two new capabilities to the node_device module. The first
          is for CCW devices, most common on the S390 architecture. The second
          is for fibre channel-backed SCSI devices and exposes the
          fc_remote_port sub-capability to SCSI target devices.
M
Martin Kletzander 已提交
1007
        </description>
B
Bjoern Walk 已提交
1008
      </change>
1009 1010 1011 1012 1013 1014 1015
      <change>
        <summary>
          Node devices now report Mediated device capabilities
        </summary>
        <description>
          Endpoint devices support new <code>mdev</code> capability
          and their parents now report the supported types in new
1016
          <code>mdev_types</code> capability.
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
        </description>
      </change>
      <change>
        <summary>
          Capabilities now report information about host caches
        </summary>
        <description>
          If supported in the kernel, host capabilities will now list
          L3 caches. The code for other levels was added as well, but
          only L3 caches are reported currently.
        </description>
      </change>
      <change>
        <summary>
          POWER9 CPU model was added
        </summary>
        <description>
          It is now properly reported in host capabilities.
        </description>
      </change>
      <change>
        <summary>
          libxl: NUMA sibling distances are now reported in host capabilities
        </summary>
      </change>
      <change>
        <summary>
          VMDK version 3 files are now properly detected
        </summary>
      </change>
      <change>
        <summary>
          Interrupt remapping and Extended interrupt mode for IOMMU devices
        </summary>
        <description>
          These two new features can now be controlled with new
          <code>&lt;driver intremap='on/off' eim='on/off'/&gt;</code>
          tag for <code>iommu</code> devices.
        </description>
      </change>
      <change>
        <summary>
          Graphics in libxl domains now have default addresses
        </summary>
        <description>
          Even though there were default addresses before this change,
          they were not saved in the XML. It is now possible to see
          and control the listen addresses properly.
        </description>
      </change>
      <change>
        <summary>
          Default USB controllers are now added for devices in libxl domains
        </summary>
        <description>
          Even though they were added automatically when USB device
          was attached, they could've been missing in some other
          cases. The logic is now fixed so there are always USB
          controllers, even if there was none of them in the specified
          XML.
        </description>
      </change>
      <change>
        <summary>
          Limits for RPC messages were increased
        </summary>
        <description>
          Hitting the RPC limits we have is easier every day, so they
          were increased once again and some guessing logic was
          improved as well. It is now possible to get more stats than
          ever using the <code>virConnectGetAllDomainStats()</code>
          call and push through even bigger requests and replies for
          all APIs.
        </description>
      </change>
1092 1093
    </section>
    <section title="Bug fixes">
1094 1095 1096 1097 1098 1099 1100 1101 1102
      <change>
        <summary>
          qemu: Create memory_backing_dir on startup
        </summary>
        <description>
          Libvirt's policy is that directories are created on startup if
          they don't exist. We've missed this one.
        </description>
      </change>
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
      <change>
        <summary>
          PCIe 4.0 cards now report proper link speeds
        </summary>
        <description>
          It could happen that the link speed for PCIe devices was not
          properly reported or the nodedev-dumpxml just failed. That
          was due to mistake in the field width, but should now work
          properly.
        </description>
      </change>
      <change>
        <summary>
          qemu: Do not report errors on shutdown
        </summary>
        <description>
          For some users, in some rare cases, it could happen that
          there was an error message "internal error: End of file from
          qemu monitor" in the logs even though no problem happened.
          The detection of these false positives was improved and such
          errors should not show any more.
        </description>
      </change>
      <change>
        <summary>
          User-specified UNIX socket paths for virtio channels should not be reset
        </summary>
        <description>
          It could happen, in some cases, that libvirt would mistake a
          user-specified path for its own generated one and thus
          remove it from the XML. The detection of such addresses was
          improved now.
        </description>
      </change>
      <change>
        <summary>
          Fix address reservation during RNG hot-plug
        </summary>
        <description>
          When error occurred in a specific point in time during the
          hot-plug of an RNG device, it could happen that an address
          was released even though another device was already using
          it, making it possible to hot-plug another device with that
          address, effectively having duplicated addresses in the XML.
        </description>
      </change>
1149 1150
    </section>
  </release>
D
Daniel Veillard 已提交
1151
  <release version="v3.3.0" date="2017-05-05">
1152
    <section title="New features">
A
Andrea Bolognani 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
      <change>
        <summary>
          net: Add support for coalesce settings
        </summary>
        <description>
          Enabling data batching through these settings can improve network
          performance for guests.
        </description>
      </change>
      <change>
        <summary>
          qemu: Add support for guest CPU cache specification
        </summary>
        <description>
          This features allows fine-grained control of the cache behavior
          of the guest CPU.
        </description>
      </change>
      <change>
        <summary>
          qemu: Add support for the qemu-xhci USB controller
        </summary>
      </change>
1176 1177
    </section>
    <section title="Improvements">
1178 1179
      <change>
        <summary>
1180
          hyperv: Support Hyper-V 2012 and newer
1181 1182 1183 1184 1185 1186
        </summary>
        <description>
          Starting with Hyper-V 2012 the API has changed causing the existing
          driver to be unable to send and process requests properly. This has
          been resolved by adding abstractions to handle the differences and
          ease handling such breaks if they happen in the future.
1187
        </description>
1188
      </change>
1189 1190
      <change>
        <summary>
1191
          libxl: Add support for nested HVM domains
1192 1193 1194 1195 1196 1197
        </summary>
        <description>
          Xen has supported nested HVM domains since version 4.4. The
          libvirt libxl driver now supports nested HVM domains by
          specifying the host-passthrough CPU mode when defining a
          domain.
1198
        </description>
1199
      </change>
A
Andrea Bolognani 已提交
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
      <change>
        <summary>
          qemu: Implement ACPI support for aarch64 guests
        </summary>
        <description>
          Up until this point, ACPI support was only advertised for x86_64
          guests and disabling it for aarch64 guests was not possible at all.
        </description>
      </change>
      <change>
        <summary>
          vz: Add support for changing the number of vCPUs
        </summary>
      </change>
      <change>
        <summary>
          qemu: Automatically choose the best USB controller for guests
        </summary>
        <description>
          The recently introduced qemu-xhci USB controller is the best choice
          for both ppc64 and aarch64 guests, so use it by default on those
          architectures if available.
        </description>
      </change>
      <change>
        <summary>
          daemon: Increase default task limit for libvirtd
        </summary>
        <description>
          The default number of tasks for the pids cgroup controller is 512,
          which libvirtd can quickly bump into when starting lots of guests.
          Raise the limit to a more reasonable 32768.
        </description>
      </change>
      <change>
        <summary>
          docs: Include man pages describing key code names and values
        </summary>
      </change>
      <change>
        <summary>
          virsh: Report initialization errors
        </summary>
        <description>
          Sometimes virsh might be unable to start: when that happens, report
          useful diagnostics instead of failing silently.
        </description>
      </change>
1248 1249
    </section>
    <section title="Bug fixes">
A
Andrea Bolognani 已提交
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
      <change>
        <summary>
          nss: Don't require a network restart for libvirt_guest
        </summary>
        <description>
          Previously, the libvirt_guest NSS module would only work properly
          after the corresponding network had been restarted; now newly
          started guests will be reported correctly right away.
        </description>
      </change>
      <change>
        <summary>
          storage: Remove unavailable transient pools after restart
        </summary>
        <description>
          Solve an issue where transient storage pools would be stuck in an
          unmanageable state if the source disappeared and libvirtd was
          subsequently restarted.
        </description>
      </change>
      <change>
        <summary>
          storage: Fix capacity value for LUKS encrypted volumes
        </summary>
        <description>
          The 'capacity' value (e.g. guest logical size) for a LUKS volume is
          smaller than the 'physical' value of the file in the file system, so
          we need to account for that.
        </description>
      </change>
      <change>
        <summary>
          qemu: Fix regression when hyperv/vendor_id feature is used
        </summary>
        <description>
          Guests using the feature would not be started at all; it is now
          possible to start them as expected.
        </description>
      </change>
      <change>
        <summary>
          qemu: Do not crash on USB address with no port and invalid bus
        </summary>
      </change>
1294 1295 1296 1297 1298 1299 1300
      <change>
        <summary>
          crypto: Always pad data before encrypting it
        </summary>
        <description>
          If this step is not performed, when the data length matches the
          chunk size the decryption routines will misinterpret the last byte
A
Andrea Bolognani 已提交
1301
          of data as the padding length and fail to decode it correctly.
1302 1303
        </description>
      </change>
1304 1305
    </section>
  </release>
D
Daniel Veillard 已提交
1306
  <release version="v3.2.0" date="2017-04-02">
1307
    <section title="New features">
1308 1309 1310 1311 1312
      <change>
        <summary>
          The virt-host-validate tool now supports bhyve hypervisor
        </summary>
      </change>
M
Michal Privoznik 已提交
1313 1314 1315 1316 1317 1318 1319 1320
      <change>
        <summary>
          Introduce NVDIMM memory model
        </summary>
        <description>
          NVDIMM is new type of memory introduced into QEMU 2.6. The idea is
          that we have a non-volatile memory module that keeps the data
          persistent across domain reboots and offers much faster data
M
Martin Kletzander 已提交
1321
          accesses. However, due to a bug in QEMU, this feature is not enabled
M
Michal Privoznik 已提交
1322 1323 1324
          for QEMUs older than 2.9.0.
        </description>
      </change>
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
      <change>
        <summary>
          qemu: Introduce support for generic PCIe Root Ports
        </summary>
        <description>
          For new controllers, a generic device (pcie-root-port) will be used
          by default instead of the Intel-specific device (ioh3420), provided
          the QEMU binary supports it.
        </description>
      </change>
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
      <change>
        <summary>
          qemu: Add support for checking guest CPU ABI compatibility
        </summary>
        <description>
          When migrating a domain to a different host, restoring a domain from
          a file or reverting a snapshot libvirt will make sure the guest CPU
          QEMU presents to the guest OS exactly matches the one provided on
          the source host (or before the domain's state was saved). This
          enhanced check may also be requested when starting a new domain to
          ensure the virtual CPU exactly matches the one specified in the XML.
        </description>
J
John Ferlan 已提交
1347 1348
      </change>
      <change>
1349 1350 1351 1352 1353 1354 1355 1356
        <summary>
          qemu: Add support to migrate using TLS
        </summary>
        <description>
          Add the ability to migrate QEMU guests using TLS via a new flag
          VIR_MIGRATE_TLS or virsh migrate '--tls' option. Requires using at
          least QEMU 2.9.0 in order to work properly.
        </description>
1357
      </change>
1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
      <change>
        <summary>
          qemu: add mediated devices framework support
        </summary>
        <description>
          Recent kernel version introduced new mediated device framework, so
          provide an initial support of this framework for libvirt, mainly by
          introducing a new host device type in the XML.
        </description>
      </change>
J
Jiri Denemark 已提交
1368
      <change>
1369 1370 1371 1372 1373 1374 1375
        <summary>
          qemu: Add support for setting TSC frequency
        </summary>
        <description>
          Setting TSC frequency is required to enable migration for domains
          with 'invtsc' CPU feature turned on.
        </description>
J
Jiri Denemark 已提交
1376
      </change>
P
Peter Krempa 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390
      <change>
        <summary>
          Add support for block device threshold event
        </summary>
        <description>
          When using thin provisioning, management tools need to resize the
          disk in certain cases. To avoid having them to poll disk usage
          this version introduces an event which will be fired when a given
          offset of the storage is written by the hypervisor. Together with the
          API it allows registering thresholds for given storage backing
          volumes and this event will then notify management if the threshold
          is exceeded. Currently only the qemu driver supports this.
        </description>
      </change>
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
      <change>
        <summary>
           bhyve: Add support for UEFI boot ROM, VNC, and USB tablet
        </summary>
        <description>
          The bhyve driver now supports booting using the UEFI boot ROM,
          so non-FreeBSD guests that support UEFI could be booted without
          using an external boot loader like grub-bhyve. Video is also
          supported now, allowing to connect to guests via VNC and use
          an USB tablet as an input device. Please refer to
          the driver page for domain XML examples.
        </description>
      </change>
1404 1405
    </section>
    <section title="Improvements">
1406 1407 1408 1409 1410 1411
      <change>
        <summary>
          qemu: Detect host CPU model by asking QEMU on x86_64
        </summary>
        <description>
          Previously, libvirt detected the host CPU model using CPUID
J
Jiri Denemark 已提交
1412
          instruction, which caused libvirt to detect a lot of CPU features
1413 1414 1415 1416
          that are not supported by QEMU/KVM. Asking QEMU makes sure we
          don't start it with unsupported features.
        </description>
      </change>
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
      <change>
        <summary>
          perf: Add more perf statistics
        </summary>
        <description>
          Add support to get the count of cpu clock time, task clock time,
          page faults, context switches, cpu migrations, minor page faults,
          major page faults, alignment faults, emulation faults by
          applications running on the platform.
        </description>
      </change>
P
Peter Krempa 已提交
1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
      <change>
        <summary>
          Write hyperv crash information into vm log
        </summary>
        <description>
          qemu's implementation of the hyperv panic notifier now reports
          information about the crash from the guest os. Starting with this
          version, libvirt logs the information to the vm log file for possible
          debugging.
        </description>
      </change>
1439 1440
    </section>
    <section title="Bug fixes">
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
      <change>
        <summary>
          QEMU: Use adaptive timeout for connecting to monitor
        </summary>
        <description>
          When starting qemu, libvirt waits for qemu to create the monitor
          socket which libvirt connects to. Historically, there was sharp 30
          second timeout after which the qemu process was killed. This
          approach is suboptimal as in some scenarios with huge amounts of
          guest RAM it can take a minute or more for kernel to allocate and
          zero out pages for qemu. The timeout is now flexible and computed by
          libvirt at domain startup.
        </description>
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
      </change>
      <change>
        <summary>
          Overwrite (clear) 2 KB instead of just 512 bytes when initializing logical device
        </summary>
      </change>
      <change>
        <summary>
          Describe the logical backend requirements better for pool-create-as
        </summary>
      </change>
1465 1466
    </section>
  </release>
D
Daniel Veillard 已提交
1467
  <release version="v3.1.0" date="2017-03-03">
1468
    <section title="New features">
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
      <change>
        <summary>
          storage: Add Virtuozzo storage backend storage pool
        </summary>
        <description>
          Add new storage backend to support pool and volume management
          within the Virtuozzo Storage environment. Virtuozzo Storage is
          a highly available distributed software defined storage with
          built-in replication and disaster recovery.
        </description>
      </change>
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491
      <change>
        <summary>
          qemu: Add support for memory backing with file source
        </summary>
        <description>
          Add support in numa topology for file source inside memory backing
          (hugepages are not needed) Three new elements
          &lt;source/&gt;,&lt;access/&gt; and &lt;allocation/&gt; were added
          to &lt;memoryBacking/&gt; element. Also new configuration parameter
          <code>memory_backing_dir</code> was added to qemu.conf.
        </description>
      </change>
1492 1493 1494 1495 1496 1497 1498 1499 1500
      <change>
        <summary>
          network: make openvswitch call timeout configurable
        </summary>
        <description>
          Adding the ability to specify the timeout value in seconds for
          openvswitch calls in the libvirtd configuration file.
        </description>
      </change>
1501 1502 1503 1504 1505 1506 1507 1508 1509
      <change>
        <summary>
          bhyve: add e1000 NIC support
        </summary>
        <description>
          Add support for e1000 NIC. Previously, the only available option
          was <code>virtio-net</code>.
        </description>
      </change>
1510 1511
      <change>
        <summary>
J
Jim Fehlig 已提交
1512
          libxl: add tunneled migration support
1513 1514
        </summary>
        <description>
J
Jim Fehlig 已提交
1515
          Add tunneled migration to libxl driver, which is always capable of
1516 1517 1518 1519
          strong encryption and doesn't require any extra network connection
          other than what's required for remote access of libvirtd.
        </description>
      </change>
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
      <change>
        <summary>
          qemu: add rendernode argument
        </summary>
        <description>
          Add a new attribute 'rendernode' to &lt;gl&gt; spice element.
        </description>
      </change>
      <change>
        <summary>
          nodedev: add drm capability
        </summary>
        <description>
          Add a new 'drm' capability for Direct Rendering Manager (DRM)
          devices, providing device type information.
        </description>
      </change>
1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
      <change>
        <summary>
          Add API for individual/specific vCPU hotplug
        </summary>
        <description>
          The new API allows selecting specific vCPUs to be added/removed from
          the VM. The existing APIs allowed only adding/removing from the end
          which did not play well with NUMA.
        </description>
      </change>
1547 1548
    </section>
    <section title="Improvements">
1549 1550 1551 1552 1553 1554 1555 1556 1557
      <change>
        <summary>
           virsh: pool-list: allow both --uuid and --name in one command
        </summary>
        <description>
          Adjust the virsh-pool command to support the --uuid and/or --name
          options in order to print just the --name and/or --uuid of pools.
        </description>
      </change>
1558 1559
      <change>
        <summary>
1560
          Introduce MTU to domain &lt;interface/&gt; and &lt;network&gt;
1561 1562
        </summary>
        <description>
1563 1564
          Allow setting MTU size for some types of domain interface
          and network.
1565 1566
        </description>
      </change>
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
      <change>
        <summary>
          libxl: improve support for &lt;timer&gt; configurations
        </summary>
        <description>
          Add support for multiple timers. Extend the tsc timer to
          support the emulate mode. Improve conversion of timer XML
          to/from xl.cfg.
        </description>
      </change>
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
      <change>
        <summary>
          storage: modularize the storage driver
        </summary>
        <description>
          Split up the storage driver backends into loadable modules so that
          binary distributions don't have to compromise on shipping the storage
          driver with all backends which may pull in too many dependencies.
        </description>
      </change>
1587 1588
    </section>
    <section title="Bug fixes">
1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
      <change>
        <summary>
          nodedev: Fabric name must not be required for fc_host capability
        </summary>
        <description>
          fabric_name is one of many fc_host attributes in Linux that is
          optional and left to the low-level driver to decide if it is
          implemented. For example the zfcp device driver does not provide a
          fabric name for an fcp host. The requirement for the existence of
          a fabric name has been removed by making it optional.
        </description>
      </change>
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
      <change>
        <summary>
          bhyve: change address allocation schema for SATA disks
        </summary>
        <description>
          Previously, the bhyve driver assigned PCI addresses to SATA disks
          directly rather than assigning that to a controller and
          using SATA addresses for disks. It was implemented this way
          because bhyve has no notion of an explicit SATA controller.
          However, as this doesn't match libvirt's understanding of
          disk addresses, the bhyve driver was changed to follow
          the common schema and have PCI addresses for SATA controllers
          and SATA addresses for disks. If you're having issues
          because of this, it's recommended to edit the domain's XML
          and remove &lt;address type='pci'&gt; from the &lt;disk&gt;
          elements with &lt;target bus='sata'/&gt; and let libvirt
          regenerate it properly.
        </description>
      </change>
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
      <change>
        <summary>
          libxl: maximum memory fixes
        </summary>
        <description>
          Fix reporting of domain maximum memory. Fix setting dom0
          maximum memory.
        </description>
      </change>
      <change>
        <summary>
          libxl: fix disk detach when &lt;driver&gt; not specified
        </summary>
      </change>
      <change>
        <summary>
          libxl: fix dom0 autoballooning with Xen 4.8
        </summary>
      </change>
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648
      <change>
        <summary>
          qemu: Allow empty script path to &lt;interface/&gt;
        </summary>
        <description>
          Historically, this was always allowed. Unfortunately, due to some
          rework done for 1.3.2 release a bug was dragged in which suddenly
          stop allowing domain with such configuration to start.
        </description>
      </change>
1649 1650
    </section>
  </release>
D
Daniel Veillard 已提交
1651
  <release version="v3.0.0" date="2017-01-17">
1652
    <section title="New features">
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
      <change>
        <summary>
          Domain events for metadata content changes
        </summary>
        <description>
          The domain events framework has a new event ID that can
          be used to get notifications when domain metadata content
          changes.
        </description>
      </change>
      <change>
        <summary>
          Event notifications for the secret object
        </summary>
        <description>
          The secret object now supports event notifications, covering
          lifcycle changes and secret value changes.
        </description>
      </change>
1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
      <change>
        <summary>
          New localPtr attribute for "ip" element in network XML
        </summary>
      </change>
      <change>
        <summary>
          qemu: Support QEMU group I/O throttling
        </summary>
        <description>
          Add the capability to allow group I/O throttling via a new
          domain &lt;disk&gt; &lt;iotune&gt; subelement "group_name"
1684
          to allow sharing I/O throttling quota between multiple drives.
1685 1686 1687 1688
        </description>
      </change>
      <change>
        <summary>
1689
          nss: Introduce libvirt_guest
1690 1691
        </summary>
        <description>
1692
          New <code>libvirt_guest</code> nss module that translates libvirt
1693
          guest names into IP addresses.
1694 1695 1696 1697 1698 1699 1700 1701 1702
        </description>
      </change>
      <change>
        <summary>
          daemon: Add support for runtime logging settings adjustment
        </summary>
        <description>
          Logging-related settings like log outputs and filters can now be
          adjusted during runtime using the admin interface without the
1703
          necessity of the daemon's restart.
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
        </description>
      </change>
      <change>
        <summary>
          storage: Add virStorageVolInfoFlags API
        </summary>
        <description>
          Add the API to support using the VIR_STORAGE_VOL_GET_PHYSICAL
          flag in order to return the host physical size in bytes
          of the image container in the allocation field of the
          _virStorageVolInfo structure. The --physical flag has been
1715
          added to the virsh vol-info command to access the data.
1716 1717 1718 1719 1720 1721 1722
        </description>
      </change>
      <change>
        <summary>
          libxl: Implement virDomainGetMaxVcpus API
        </summary>
      </change>
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
      <change>
        <summary>
          storage: Add overwrite flag checking for logical pool
        </summary>
        <description>
          Add support for the OVERWRITE flags for the logical storage
          backend including checking for existing data on the target
          volumes when building a new logical pool on target volume(s).
        </description>
      </change>
1733 1734 1735 1736 1737
      <change>
        <summary>
          qemu: Add support for guest CPU configuration on s390(x)
        </summary>
      </change>
1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
    </section>
    <section title="Improvements">
      <change>
        <summary>
          perf: Add more perf statistics
        </summary>
        <description>
          Add support to get the count of branch instructions
          executed, branch misses, bus cycles, stalled frontend
          cpu cycles, stalled backend cpu cycles, and ref cpu
1748
          cycles by applications running on the platform.
1749 1750 1751 1752 1753 1754 1755 1756
        </description>
      </change>
      <change>
        <summary>
          conf: Display &lt;physical&gt; for volume xml
        </summary>
        <description>
          Add a display of the &lt;physical&gt; size of a disk
1757
          volume in the output of the volume XML.
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
        </description>
      </change>
      <change>
        <summary>
          qemu: Use virtio-pci by default for aarch64 mach-virt guests
        </summary>
        <description>
          virtio-pci provides several advantages over virtio-mmio, such
          as the ability to hotplug devices and improved performance.
          While opting in to virtio-pci has been possible for a while,
1768
          newly-defined guests will now use it automatically.
1769 1770
        </description>
      </change>
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
      <change>
        <summary>
          vbox: remove support for VirtualBox 3.x and older
        </summary>
        <description>
          Those old VirtualBox versions have been unsupported by
          upstream for a long time and the API of 4.0 and newer has
          diverged enough to require code abstractions to handle differences.
          Removing support for those old versions drops lots of code from
          the driver and simplifies the logic to ease implementation of new
          features going forward.
        </description>
      </change>
1784 1785 1786 1787 1788 1789 1790 1791 1792
      <change>
        <summary>
          virsh: pool-info: introduce option --bytes
        </summary>
        <description>
          Add option --bytes to virsh pool-info in order ti allow display
          of units in bytes rather than default of human readable output.
        </description>
      </change>
1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804
      <change>
        <summary>
          scsi: Add parent wwnn/wwpn or fabric capability for createVport
        </summary>
        <description>
          Improve the algorithm searching for the parent scsi_host device
          for vHBA/NPIV scsi_host creation. Rather than supplying the
          "parent" by name, it's now possible to define the parent by
          it's wwnn/wwpn or fabric_wwn in the node device create XML or
          the storage pool XML.
        </description>
      </change>
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
      <change>
        <summary>
          qemu: aggregate pcie-root-ports onto multiple functions of a slot
        </summary>
        <description>
          When pcie-root-ports are added to pcie-root in order to
          provide a place to connect PCI Express endpoint devices,
          libvirt now aggregates multiple root ports together onto the
          same slot (up to 8 per slot) in order to conserve slots.
          Using this method, it's possible to connect more than 200
          endpoint devices to a guest that uses PCIe without requiring
          setup of any PCIe switches.
        </description>
      </change>
1819 1820
    </section>
    <section title="Bug fixes">
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
      <change>
        <summary>
          lxc: fix accidental killing of containers during libvirtd restart
        </summary>
        <description>
          The libvirt_lxc process was previously not moved into the
          container scope. As a result, if systemd reloads its config
          after a container is started, when libvirtd is later restarted
          it will accidentally kill the containers.
        </description>
      </change>
1832 1833 1834 1835 1836 1837 1838 1839
      <change>
        <summary>
          qemu: Correct GetBlockInfo values
        </summary>
        <description>
          For an active domain, correct the physical value provided for
          a raw sparse file backed storage and the allocation value provided
          for a qcow2 file backed storage that hasn't yet been opened on
1840
          the domain.
1841 1842 1843 1844 1845 1846 1847 1848
        </description>
      </change>
      <change>
        <summary>
          qemu: Make virtio console usable on ppc64 guests
        </summary>
        <description>
          The chardev detection code has been improved and can now handle this
1849
          configuration properly.
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
        </description>
      </change>
      <change>
        <summary>
          qemu: Enable mount namespace
        </summary>
        <description>
          To avoid funny races with udev relabelling devices under our hands and
          to enhance security, libvirt now spawns each qemu process with its own
          <code>/dev</code>.
        </description>
      </change>
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
      <change>
        <summary>
          storage: Fix implementation of no-overwrite for file system backend
        </summary>
        <description>
          Fix file system storage backend implementation of the OVERWRITE
          flags to be consistent between code and documentation. Add checks
          to ensure that when building a new file system on a target volume
          that there is not something already on the disk in a format that
          libvirt can recognize.
        </description>
      </change>
M
Michal Privoznik 已提交
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
      <change>
        <summary>
          qemu: Create hugepage path on per domain basis
        </summary>
        <description>
          Historically, all hugepage enabled domains shared the same path under
          hugetlbfs. This left libvirt unable to correctly set security labels
          on it. With this release, however, each domain is put into a
          separate path which is also correctly labeled.
        </description>
      </change>
1885 1886 1887 1888 1889 1890 1891 1892 1893
      <change>
        <summary>
          conf: Reject domains with duplicate drive addresses
        </summary>
        <description>
          Reject duplicate drive addresses for disks and hostdevs at
          domain definition.
        </description>
      </change>
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
      <change>
        <summary>
          libxl: reverse defaults on HVM net device attach
        </summary>
        <description>
          Fixes network interface attach for HVM domains when no model is
          specified. Emulated hotplug isn't yet supported and hence we should
          default to the general working scenario.
        </description>
      </change>
1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914
      <change>
        <summary>
          libxl: always enable pae for x86_64 HVM
        </summary>
        <description>
          By default pae is disabled in libxl. Without an explicit &lt;pae/&gt;
          setting in the domain &lt;features&gt; configuration, an x86_64 HVM
          domain would be get an i686 environment. pae should always be enabled
          for x86_64 HVM domains.
        </description>
      </change>
1915 1916 1917 1918 1919 1920 1921 1922 1923
      <change>
        <summary>
          qemu: Fix XML dump of autogenerated websocket
        </summary>
        <description>
          As a result autogenerated websocket port is regenerated on domain restore,
          migration and such as it should be.
        </description>
      </change>
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
    </section>
  </release>
  <release version="v2.5.0" date="2016-12-04">
    <section title="New features">
      <change>
        <summary>
          shmem: Add support for additional models
        </summary>
        <description>
          The shmem device can now utilize QEMU's ivshmem-plain and
1934
          ivshmem-doorbell, more modern versions of ivshmem.
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
        </description>
      </change>
      <change>
        <summary>
          vbox: Add VirtualBox 5.1 support
        </summary>
      </change>
      <change>
        <summary>
          libssh: New transport
        </summary>
        <description>
          The new libssh transport allows one to connect to a running
          libvirtd via SSH, using the libssh library; for example:
1949
          <code>qemu+libssh://server/system</code>.
1950 1951 1952 1953 1954 1955 1956 1957
        </description>
      </change>
      <change>
        <summary>
          vhost-scsi: Add support scsi_host hostdev passthrough
        </summary>
        <description>
          Add the capability to pass through a scsi_host HBA and the
1958
          associated LUNs to the guest.
1959 1960 1961 1962
        </description>
      </change>
      <change>
        <summary>
1963
          Allow debugging of gluster volumes in qemu
1964
        </summary>
1965 1966 1967 1968
        <description>
          Users can now enable debug logging for native gluster
          volumes in qemu using the "gluster_debug_level" option in qemu.conf
        </description>
1969 1970 1971
      </change>
      <change>
        <summary>
1972
          Pre-allocate memory slots for memory hotplug
1973
        </summary>
1974 1975 1976 1977 1978
        <description>
          Slot numbers for memory devices are now automatically allocated and
          thus persistent. In addition slot numbers can be specified without
          providing a base address, which simplifies user configuration
        </description>
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
      </change>
      <change>
        <summary>
          qemu: Express devices will be placed on PCIe bus by default
        </summary>
        <description>
          For machine types that use a PCI Express root bus
          (e.g. x86_64/Q35 and aarch64/virt), any unaddressed PCI
          device that is an Express device (all virtio-1.0 devices,
          e1000e, nec-xhci, vfio assigned devices) will be placed on
          an Express controller (i.e. a pcie-root-port) instead of a
          legacy PCI controller (i.e. pci-bridge) with the root ports
1991
          added as needed.
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
        </description>
      </change>
    </section>
    <section title="Improvements">
      <change>
        <summary>
          docs: Better documentation for migration APIs and flags
        </summary>
      </change>
      <change>
        <summary>
          vbox: Address thread safety issues
        </summary>
      </change>
      <change>
        <summary>
2008
          virsh: Add support for passing an alternative persistent XML to migrate command
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
        </summary>
      </change>
      <change>
        <summary>
          vhostuser: Allow hotplug of multiqueue devices
        </summary>
      </change>
      <change>
        <summary>
          NEWS: Switch to an improved format
        </summary>
        <description>
          List user-visible changes instead of single commits for a better
2022
          high-level overview of differences between libvirt releases.
2023 2024 2025 2026 2027 2028 2029 2030 2031
        </description>
      </change>
      <change>
        <summary>
          website: Modernize layout and branding
        </summary>
        <description>
          The libvirt website looked very cluttered and outdated; it has now
          been completely overhauled, resulting in a design that's better
2032
          organized and more pleasant to look at.
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054
        </description>
      </change>
    </section>
    <section title="Bug fixes">
      <change>
        <summary>
          vz: Fix migration in P2P mode
        </summary>
      </change>
      <change>
        <summary>
          Forbid newline character in names of some libvirt objects
        </summary>
      </change>
      <change>
        <summary>
          Fix compilation on macOS
        </summary>
      </change>
    </section>
  </release>
</libvirt>