Files
bpfire/lfs/libvirt
Adolf Belka 1302f0cde8 libvirt: Update version to 8.10.0
- Update from version 8.9.0 to 8.10.0
- Update of rootfile
- Changelog
    v8.10.0 (2022-12-01)
	**New features**
		  * Tool for validating SEV firmware boot measurement of QEMU VMs
		     The ``virt-qemu-sev-validate`` program will compare a reported SEV/SEV-ES
		     domain launch measurement, to a computed launch measurement. This
		     determines whether the domain has been tampered with during launch.
		  * Support for SGX EPC (enclave page cache)
		     Users can add a ``<memory model='sgx-epc'>`` device to lauch a VM with
		     ``Intel Software Guard Extensions``.
		  * Support migration of vTPM state of QEMU vms on shared storage
		     Pass ``--migration`` option if appropriate in order for ``swtpm`` to
		     properly migrate on shared storage.
	**Improvements**
		  * Mark close callback (un-)register API as high priority
		     High priority APIs use a separate thread pool thus can help in eliminating
		     problems with stuck VMs. Marking the close callback API as high priority
		     allows ``virsh`` to properly connect to the daemon in case the normal
		     priority workers are stuck allowing other high priority API usage.
		  * Updated x86 CPU features
		     The following features for the x86 platform were added:
		      ``v-vmsave-vmload``, ``vgif``, ``avx512-vp2intersect``, ``avx512-fp16``,
		      ``serialize``, ``tsx-ldtrk``, ``arch-lbr``, ``xfd``, ``intel-pt-lip``,
		      ``avic``, ``sgx``, ``sgxlc``, ``sgx-exinfo``, ``sgx1``, ``sgx2``,
		      ``sgx-debug``, ``sgx-mode64``, ``sgx-provisionkey``, ``sgx-tokenkey``,
		      ``sgx-kss``, ``bus-lock-detect``, ``pks``, ``amx``.
		  * Add support for ``hv-avic`` Hyper-V enlightenment
		     ``qemu-6.2`` introduced support for the ``hv-avic`` enlightenment which
		     allows to use Hyper-V SynIC with hardware APICv/AVIC enabled.
		  * qemu: Run memory preallocation with numa-pinned threads
		     Run the thread allocating memory in the proper NUMA node to reduce overhead.
		  * RPM packaging changes
		    - add optional dependancy of ``libvirt-daemon`` on ``libvirt-client``
		       The ``libvirt-guests.`` tool requires the ``virsh`` client to work
		       properly, but we don't want to require the installation of the daemon
		       if the tool is not used.
		    - relax required ``python3-libvirt`` version for ``libvirt-client-qemu``
		       The ``virt-qemu-qmp-proxy`` tool requires python but doesn't strictly
		       need the newest version. Remove the strict versioning requirement in
		       order to prevent cyclic dependency when building.
	**Bug fixes**
		  * Skip initialization of ``cache`` capabilities if host doesn't support them
		     Hypervisor drivers would fail to initialize on ``aarch64`` hosts with
		     following error ::
		       virStateInitialize:657 : Initialisation of cloud-hypervisor state driver failed: no error
		     which prevented the startup of the daemon.
		  * Allow incoming connections to guests on routed networks w/firewalld
		     A change in handling of implicit rules in ``firewalld 1.0.0`` broke
		     incomming connections to VMs when using ``routed`` network. This is fixed
		     by adding a new ``libvirt-routed`` zone configured to once again allow
		     incoming sessions to guests on routed networks.
		  * Fix infinite loop in nodedev driver
		     Certain udev entries might be of a size that makes libudev emit EINVAL
		     which caused a busy loop burning CPU. Fix it by ignoring the return code.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-12-26 08:39:00 +00:00

131 lines
4.6 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
SUMMARY = Server side daemon and supporting files for libvirt
VER = 8.10.0
THISAPP = libvirt-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = x86_64 aarch64
PROG = libvirt
PAK_VER = 31
DEPS = ebtables libpciaccess libtirpc libyajl ncat qemu
SERVICES = libvirtd virtlogd
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = 6c99428dd74ae1e535d0918bb48da0a851b03e9dfc38f96fca060a33b6be6c23c8b4a789695e8cf930536c156c8a893e18753a58c8a827f464b83a61b47c4846
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
dist:
$(PAK)
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/libvirt/0001-Change-default-behavior-of-libvirt-guests.sh-for-IPF.patch
cd $(DIR_APP) && meson \
--prefix=/usr \
--localstatedir=/var \
--sysconfdir=/etc \
-D docs=disabled \
-D sasl=disabled \
-D driver_vbox=disabled \
-D driver_lxc=disabled \
-D driver_esx=disabled \
-D driver_vmware=disabled \
-D driver_openvz=disabled \
-D firewalld=disabled \
-D driver_network=disabled \
-D driver_interface=enabled \
-D wireshark_dissector=disabled \
-D nls=disabled \
-D tests=disabled \
-D qemu_user=nobody \
-D qemu_group=kvm \
-D storage_dir=enabled \
-D storage_fs=enabled \
-D storage_lvm=enabled \
-D storage_iscsi=disabled \
-D storage_scsi=disabled \
-D storage_mpath=disabled \
-D storage_disk=disabled \
-D storage_rbd=disabled \
-D storage_gluster=disabled \
-D storage_zfs=disabled \
builddir/
cd $(DIR_APP) && ninja -C builddir/ $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && ninja -C builddir/ install
#install initscripts
@$(call INSTALL_INITSCRIPTS,$(SERVICES))
mv /usr/libexec/libvirt-guests.sh /etc/rc.d/init.d/libvirt-guests
# Backup
install -v -m 644 $(DIR_SRC)/config/backup/includes/libvirt /var/ipfire/backup/addons/includes/libvirt
# Install libvirtd.conf
cp -fv $(DIR_SRC)/config/libvirt/libvirtd.conf /etc/libvirt
@rm -rf $(DIR_APP)
@$(POSTBUILD)