]> git.ipfire.org Git - thirdparty/libvirt.git/log
thirdparty/libvirt.git
2 months agoqemuDomainPrepareHostdevPCI: Simplify error messages
Peter Krempa [Mon, 12 May 2025 13:21:07 +0000 (15:21 +0200)] 
qemuDomainPrepareHostdevPCI: Simplify error messages

Rework the error reporting. Unify on one message about device assignment
modes not supported by the qemu driver and move and reword the messages
for VFIO device assignment.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
2 months agoqemuDomainPrepareHostdevPCI: Fix return values after conversion from bool to int
Peter Krempa [Mon, 12 May 2025 13:06:32 +0000 (15:06 +0200)] 
qemuDomainPrepareHostdevPCI: Fix return values after conversion from bool to int

Historically when the code was in 'qemuHostdevPreparePCIDevicesCheckSupport'
the function returned bools. Later it was refactored and moved to
'qemuDomainPrepareHostdevPCI' the return values were not changed.

Thus the function now returned '-1', 'false', and 'true'. Callers
checked for '-1' only so the few cases forbidding legacy device
passthrough were no longer causing fatal errors.

Fixes: 3b87709c768480e085556e06bd8d08f62270d42d
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
2 months agovirnetdevtap: Fix memory leak in virNetDevTapReattachBridge
QiangWei Zhang [Tue, 6 May 2025 10:33:01 +0000 (18:33 +0800)] 
virnetdevtap: Fix memory leak in virNetDevTapReattachBridge

Variable 'master' needs to be free because it will be reassigned in
virNetDevOpenvswitchInterfaceGetMaster().

The leaked stack:
Direct leak of 11 byte(s) in 1 object(s) allocated from:
    #0 0x7f7dad8ba6df in __interceptor_malloc (/lib64/libasan.so.8+0xba6df)
    #1 0x7f7dad715728 in g_malloc (/lib64/libglib-2.0.so.0+0x60728)
    #2 0x7f7dad72d8b2 in g_strdup (/lib64/libglib-2.0.so.0+0x788b2)
    #3 0x7f7dacb63088 in g_strdup_inline /usr/include/glib-2.0/glib/gstrfuncs.h:321
    #4 0x7f7dacb63088 in virNetDevGetName ../src/util/virnetdev.c:823
    #5 0x7f7dacb63886 in virNetDevGetMaster ../src/util/virnetdev.c:909
    #6 0x7f7dacb90288 in virNetDevTapReattachBridge ../src/util/virnetdevtap.c:527
    #7 0x7f7dacd5cd67 in virDomainNetNotifyActualDevice ../src/conf/domain_conf.c:30505
    #8 0x7f7da3a10bc3 in qemuProcessNotifyNets ../src/qemu/qemu_process.c:3290
    #9 0x7f7da3a375c6 in qemuProcessReconnect ../src/qemu/qemu_process.c:9211
    #10 0x7f7dacc0cc53 in virThreadHelper ../src/util/virthread.c:256
    #11 0x7f7dac2875d4 in start_thread (/lib64/libc.so.6+0x875d4)
    #12 0x7f7dac3091bb in __GI___clone3 (/lib64/libc.so.6+0x1091bb)

Fixes: de938b92c9d3a47647164aa643c20d2fc96cd2bc
Signed-off-by: QiangWei Zhang <zhang.qiangwei@zte.com.cn>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agovirnetlink: Split virNetlinkBridgeVlanFilterSet()
Michal Privoznik [Mon, 12 May 2025 13:00:04 +0000 (15:00 +0200)] 
virnetlink: Split virNetlinkBridgeVlanFilterSet()

Currently, virNetlinkBridgeVlanFilterSet() takes @cmd as the
second argument where either RTM_SETLINK or RTM_DELLINK is
expected. Both of these constants come from linux/rtnetlink.h and
thus are undefined when building without netlink. This design
also clashes with the whole point of virnetlink: to offload
netlink dependency onto a single file.

Therefore, drop the argument, turn
virNetlinkBridgeVlanFilterSet() into just setter, effectively,
and introduce virNetlinkBridgeVlanFilterDel() for the case when
RTM_DELLINK would be passed as @cmd.

Resolves: https://gitlab.com/libvirt/libvirt/-/issues/770
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agovirnetdevbridge: Include virnetlink.h more often
Michal Privoznik [Mon, 12 May 2025 12:29:21 +0000 (14:29 +0200)] 
virnetdevbridge: Include virnetlink.h more often

The whole point of virnetlink.h is that it hides away the build
time dependency on netlink. It wraps netlink functions in our
functions which then have a stub implementation in case netlink
support was disabled.

Though, netlink is still Linux specific, so keep it in the
'#ifdef __linux__` block to cause a compilation error should
anybody try to use any of the wrapped functions on non-Linux.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agovirnetdevbridge.c: Fix comments in virNetDevBridgeSetupVlans()
Michal Privoznik [Mon, 12 May 2025 12:27:58 +0000 (14:27 +0200)] 
virnetdevbridge.c: Fix comments in virNetDevBridgeSetupVlans()

We still use C89 style of comments. Fix C99 style of comments
used in virNetDevBridgeSetupVlans().

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agovirnetlink: Provide stub for virNetlinkBridgeVlanFilterSet()
Michal Privoznik [Mon, 12 May 2025 12:28:42 +0000 (14:28 +0200)] 
virnetlink: Provide stub for virNetlinkBridgeVlanFilterSet()

In virnetlink.c there are two sections: the first one when
building WITH_LIBNL support, the other that provides stubs for
functions declared in the corresponding header file when building
without netlink support. But the stub implementation for
virNetlinkBridgeVlanFilterSet() was missing.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agorpm: disable zfs on Fedora >= 43
Daniel P. Berrangé [Thu, 8 May 2025 10:16:30 +0000 (11:16 +0100)] 
rpm: disable zfs on Fedora >= 43

The zfs-fuse package has been dead upstream for a long time and is
now retired in Fedora rawhide.

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2 months agotests: Add capabilities for QEMU 10.0.0 on aarch64
Matthew R. Ochs [Wed, 7 May 2025 23:38:46 +0000 (16:38 -0700)] 
tests: Add capabilities for QEMU 10.0.0 on aarch64

Notable differences:

  * various machine types, notably vexpress-a9, have stopped
    accepting user-specified CPU models in QEMU 9.0;

  * the command line for raw devices is slightly different
    as libvirt now skips the 'raw' format driver blockdev.

Signed-off-by: Matthew R. Ochs <mochs@nvidia.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
2 months agotests: Use collie instead of borzoi for aarch64 tests
Andrea Bolognani [Thu, 27 Feb 2025 10:35:07 +0000 (11:35 +0100)] 
tests: Use collie instead of borzoi for aarch64 tests

The borzoi machine type was dropped in QEMU 9.2.0, so let's
use a different machine type with no ACPI support and no
implicit USB controller instead.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agoqemu_capabilities: Fetch caps for virtio-mem-ccw too
Michal Privoznik [Wed, 7 May 2025 12:32:52 +0000 (14:32 +0200)] 
qemu_capabilities: Fetch caps for virtio-mem-ccw too

While with upstream QEMU it's impossible to have virtio-mem-ccw and not
have virtio-mem-pci, in RHEL the QEMU's build system is patched to make
that possible. But this breaks our assumption when fetching
capabilities.

Well, just do what we are already doing in this situation (e.g.
"virtio-blk-pci"/"virtio-blk-ccw" & virQEMUCapsDevicePropsVirtioBlk, or
"virtio-scsi-pci"/"virtio-net-ccw" & virQEMUCapsDevicePropsVirtioSCSI):
fetch the same set of props for both devices.

Resolves: https://issues.redhat.com/browse/RHEL-87528
Resolves: https://issues.redhat.com/browse/RHEL-87532

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agoci: refresh with 'lcitool manifest'
Daniel P. Berrangé [Fri, 2 May 2025 08:29:08 +0000 (09:29 +0100)] 
ci: refresh with 'lcitool manifest'

This removes librbd from 32-bit arches on debian sid, which no longer
exists.

Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agodocs: hooks: Document when shutoff-reason argument was introduced
Michal Privoznik [Mon, 5 May 2025 08:51:52 +0000 (10:51 +0200)] 
docs: hooks: Document when shutoff-reason argument was introduced

Introduced in v10.5.0-rc1~52, qemu and lxc hook scripts are
executed with additional argument: shutoff reason. But wording of
our docs make it looks like it's been that way forever. Make it
clear this is `recent` feature.

Resolves: https://gitlab.com/libvirt/libvirt/-/issues/766
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocpu_x86: Fix algorithm for computing CPU model weight
Jiri Denemark [Wed, 23 Apr 2025 12:58:41 +0000 (14:58 +0200)] 
cpu_x86: Fix algorithm for computing CPU model weight

This patch is effectively a NOP, but it fixes a logic bug and makes the
heuristics more visible and easier to change should there be a need to
do so in the future.

We decide which CPU model is the best match for given CPU data by
comparing lists of features that need to be enabled/disabled on top of
the selected CPU model. Since the original approach of using just the
total number of features was not working well enough, commit
v8.3.0-42-g48341b025a implemented a penalty for disabled features which
would increase for each additional disabled features. Apparently the
intention was weighting disabled features as

                      disabled * (disabled + 3)
    weightDisabled =  -------------------------
                                2

and complete CPU model as

    weight = enabled + weightDisabled

But there was a bug in the code which caused it to ignore some of the
features and counted as enabled regardless on their policy. Instead of
going through all features the code used the number of "enabled"
features (the variable was not really counting number of enabled
features though) which was initialized to the total number of features
and decremented each time a disabled features was found. Thus depending
on the number of disabled features, some features at the end of the list
were ignored. Luckily we know all the ignored features had to be
disabled because the CPU definitions were created by x86DataToCPU which
constructs a list of enabled features followed by disabled features.

So to fix the bug while providing the same results we can come up with
an equivalent formula using properly counted features in the CPU
definition.

The number of disabled features counted by the buggy code is

    half = (disabled + 1) div 2

and the weight of all disabled features is

                     half * (half + 3)
    weightDisabled = -----------------
                            2

When computing the total weight, we can't no longer use number of
enabled features because the original code counted some of the disabled
features as enabled. So to match the old behavior, we count the total
weight as

    weight = features - half + weightDisabled

The weight of enabled features now differs from the value computed by
the old code, but we don't need to worry about it as it's not really
used anywhere except for logging.

Fixes: https://gitlab.com/libvirt/libvirt/-/issues/759
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocpu_x86: Refactor virCPUx86CompareCandidateFeatureList
Jiri Denemark [Wed, 16 Apr 2025 12:30:12 +0000 (14:30 +0200)] 
cpu_x86: Refactor virCPUx86CompareCandidateFeatureList

Refactor weight calculation to a separate virCPUx86WeightFeatures
function to avoid code duplication. The algorithm is not changed during
the refactoring, it will be fixed later.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for a newer version of Intel Atom(R) P5362 CPU
Jiri Denemark [Fri, 25 Apr 2025 12:57:50 +0000 (14:57 +0200)] 
cputest: Add data for a newer version of Intel Atom(R) P5362 CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) w7-3465X CPU
Jiri Denemark [Fri, 25 Apr 2025 06:00:23 +0000 (08:00 +0200)] 
cputest: Add data for Intel(R) Xeon(R) w7-3465X CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) Gold 6530 CPU
Jiri Denemark [Thu, 24 Apr 2025 21:50:42 +0000 (23:50 +0200)] 
cputest: Add data for Intel(R) Xeon(R) Gold 6530 CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) Bronze 3408U CPU
Jiri Denemark [Thu, 24 Apr 2025 14:04:59 +0000 (16:04 +0200)] 
cputest: Add data for Intel(R) Xeon(R) Bronze 3408U CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) 6731E CPU
Jiri Denemark [Thu, 24 Apr 2025 14:03:40 +0000 (16:03 +0200)] 
cputest: Add data for Intel(R) Xeon(R) 6731E CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for AMD EPYC 9334 32-Core CPU
Jiri Denemark [Thu, 24 Apr 2025 14:01:55 +0000 (16:01 +0200)] 
cputest: Add data for AMD EPYC 9334 32-Core CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) Gold 6152 CPU
Jiri Denemark [Thu, 24 Apr 2025 08:26:30 +0000 (10:26 +0200)] 
cputest: Add data for Intel(R) Xeon(R) Gold 6152 CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for AMD Ryzen 5 5500U CPU
Jiri Denemark [Wed, 23 Apr 2025 14:13:42 +0000 (16:13 +0200)] 
cputest: Add data for AMD Ryzen 5 5500U CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for AMD EPYC 7713 64-Core CPU
Jiri Denemark [Wed, 23 Apr 2025 14:11:17 +0000 (16:11 +0200)] 
cputest: Add data for AMD EPYC 7713 64-Core CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) Silver 4214R CPU
Jiri Denemark [Wed, 23 Apr 2025 13:48:25 +0000 (15:48 +0200)] 
cputest: Add data for Intel(R) Xeon(R) Silver 4214R CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Xeon(R) CPU E3-1270 v5 CPU
Jiri Denemark [Wed, 23 Apr 2025 13:47:42 +0000 (15:47 +0200)] 
cputest: Add data for Intel(R) Xeon(R) CPU E3-1270 v5 CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Core(TM) i7-1365U CPU
Jiri Denemark [Fri, 25 Apr 2025 13:15:37 +0000 (15:15 +0200)] 
cputest: Add data for Intel(R) Core(TM) i7-1365U CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agocputest: Add data for Intel(R) Core(TM) i7-1270P CPU
Jiri Denemark [Fri, 25 Apr 2025 13:04:06 +0000 (15:04 +0200)] 
cputest: Add data for Intel(R) Core(TM) i7-1270P CPU

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agotests: update capabilities for QEMU 10.0.0 on s390x
Shalini Chellathurai Saroja [Wed, 30 Apr 2025 13:47:31 +0000 (15:47 +0200)] 
tests: update capabilities for QEMU 10.0.0 on s390x

Update the replies and xml files for QEMU 10.0.0 on s390x based on
the released QEMU tag v10.0.0 with the commit Id
7c949c53e936aa3a658d84ab53bae5cadaa5d59c.

Signed-off-by: Shalini Chellathurai Saroja <shalini@linux.ibm.com>
Reviewed-by: Boris Fiuczynski <fiuczy@linux.ibm.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agoqemuxmlactivetest: Don't segfault when capability XMLs are invalid
Peter Krempa [Thu, 24 Apr 2025 13:40:12 +0000 (15:40 +0200)] 
qemuxmlactivetest: Don't segfault when capability XMLs are invalid

This is purely a devel-time problem in the test suite.

'qemuxmlactivetest' invokes the whole test worker twice, once for
inactive output and second time for active.

Now 'testQemuInfoInitArgs' returns a failure if the XML is invalid and
the test is skipped. On another invocation though it returns 0 if
'testQemuInfoSetArgs' was not invoked meanwhile and thus makes it seem
it succeeded which leads to a crash in the code assuming that some
pointers are valid.

Use same interlocking as 'qemuxmlconftest' to skip the second invocation
on failure of the first one.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agodomaincapstest: Remove XMLs for already dropped qemu versions (4.2.0 - 5.1.0)
Peter Krempa [Mon, 28 Apr 2025 07:34:50 +0000 (09:34 +0200)] 
domaincapstest: Remove XMLs for already dropped qemu versions (4.2.0 - 5.1.0)

The files were forgotten after the previous bump to use qemu-5.2 as
minimum. The data for qemu-5.2, qemu-6.0, and qemu-6.1 was already
removed when bumping to qemu-6.2.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agoqemucapabilitiesdata: Enable GTK graphics for 'caps_10.0.0_x86_64'
Peter Krempa [Mon, 28 Apr 2025 12:19:32 +0000 (14:19 +0200)] 
qemucapabilitiesdata: Enable GTK graphics for 'caps_10.0.0_x86_64'

The common x86_64 test output was usually built without GTK as I've had
that in my build script for a long time. Enable it now as GTK UI is
enabled by many distros and upcoming patches plan to add support to
libvirt as well.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
3 months agoscripts: Adapt mock-noinline.py to ATTRIBUTE_MOCKABLE
Michal Privoznik [Mon, 28 Apr 2025 11:56:09 +0000 (13:56 +0200)] 
scripts: Adapt mock-noinline.py to ATTRIBUTE_MOCKABLE

The script is renamed to mockable-attribute.py and adjusted to
check for the new attribute.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agosrc: s/G_NO_INLINE/ATTRIBUTE_MOCKABLE/
Michal Privoznik [Mon, 28 Apr 2025 09:58:39 +0000 (11:58 +0200)] 
src: s/G_NO_INLINE/ATTRIBUTE_MOCKABLE/

Per change in coding style done in previous commit,
ATTRIBUTE_MOCKABLE should be used instead of G_NO_INLINE for
functions that are mocked in our test suite. Do the change.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agointernal: Introduce ATTRIBUTE_MOCKABLE
Michal Privoznik [Mon, 28 Apr 2025 08:49:57 +0000 (10:49 +0200)] 
internal: Introduce ATTRIBUTE_MOCKABLE

Currently, if we want to mock a function the noinline attribute
is appended after the function (via G_NO_INLINE macro). This used
to work for non pure functions. But there are some trivial
functions (for instance virQEMUCapsProbeHVF()) that are pure,
i.e. have no side effect, and while their call from other parts
of the code is not optimized out, their call from within the same
compilation unit (qemu_capabilities.c) is optimized out.

This is because inlining and semantic interposition are two
different things. Even GCC's documentation for noinline attribute
[1] states that clearly:

  This function attribute prevents a function from being
  considered for inlining. It also disables some other
  interprocedural optimizations; it’s preferable to use the more
  comprehensive noipa attribute instead if that is your goal.

  Even if a function is declared with the noinline attribute,
  there are optimizations other than inlining that can cause
  calls to be optimized away if it does not have side effects,
  although the function call is live.

Unfortunately, despite attempts [2] Clang still does not support
the attribute and thus we have to rely on noinline +
-fsemantic-interposition combo.

1: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-noinline-function-attribute
2: https://reviews.llvm.org/D101011

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoopenvz: stop hardcoding vzlist/vzctl/vzmigrate paths
Daniel P. Berrangé [Tue, 29 Apr 2025 10:59:41 +0000 (11:59 +0100)] 
openvz: stop hardcoding vzlist/vzctl/vzmigrate paths

Allow virCommand to find them in $PATH, which will always include 'sbin'
since the openvz driver only operates in system mode.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: stop hardcoding pkttyagent path
Daniel P. Berrangé [Tue, 29 Apr 2025 10:59:41 +0000 (11:59 +0100)] 
util: stop hardcoding pkttyagent path

Allow virCommand to find it in $PATH

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agostorage: stop hardcoding LVM tool paths
Daniel P. Berrangé [Tue, 29 Apr 2025 10:47:27 +0000 (11:47 +0100)] 
storage: stop hardcoding LVM tool paths

Change the meson rules to always enable the LVM driver if on a
Linux host, unless the meson options say not to.

The virCommand APIs will return suitable runtime errors if the
tools are not installed.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agomeson: stop setting conf var for optional programs
Daniel P. Berrangé [Mon, 28 Apr 2025 16:19:14 +0000 (17:19 +0100)] 
meson: stop setting conf var for optional programs

There is no reference to AUGPARSE, BLACK, FLAKE8, PDWTAGS or PYTEST conf
variables anywhere, only the ${name}_prog meson variables are used.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove use hardcoded TC path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
util: remove use hardcoded TC path

Allow virCommand to find 'tc' in $PATH. This command is only used
when running privileged in which case both 'bin' and 'sbin' dirs will
be in $PATH, so virFindFileInPath will do the right thing to find it.

Since there are no longer any optional programs, only optional test
programs, the meson variables can be renamed and simplified at this
point.

The "TC" constant is defined in the header to match the pattern used
for the other firewall tool names.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove use hardcoded OVS_VSCTL path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
util: remove use hardcoded OVS_VSCTL path

Allow virCommand to find 'ovs-vsctl' in $PATH. This command is only used
when running privileged in which case both 'bin' and 'sbin' dirs will
be in $PATH, so virFindFileInPath will do the right thing to find it.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove use hardcoded MODPROBE/RMMOD paths
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
util: remove use hardcoded MODPROBE/RMMOD paths

Allow virCommand to find 'modprobe' & 'rmmod' in $PATH. These commands
are only used when running privileged in which case both 'bin' and
'sbin' dirs will be in $PATH, so virFindFileInPath will do the right
thing to find them.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove use hardcoded MM_CTL path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
util: remove use hardcoded MM_CTL path

Allow virCommand to find 'mm-ctl' in $PATH. This command is only used
when running privileged in which case both 'bin' and 'sbin' dirs will
be in $PATH, so virFindFileInPath will do the right thing to find it.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agonodedev: remove use hardcoded MDEVCTL path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
nodedev: remove use hardcoded MDEVCTL path

Allow virCommand to find 'mdevctl' in $PATH. This command is only used
when running privileged in which case both 'bin' and 'sbin' dirs will
be in $PATH, so virFindFileInPath will do the right thing to find it.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove hardcoded ISCSIADM command path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:39:59 +0000 (17:39 +0100)] 
util: remove hardcoded ISCSIADM command path

Gating the iscsi driver backend on a isciadm probe is likely to do
more harm than good as it needlessly disables the code if the dev
forgot to install iscsiadm at build time. As a Linux only command
it is simpler to gate the feature based on the platform choice and
allow missing binaries to be diagnose at runtime.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agomeson: remove check for 'ip' program
Daniel P. Berrangé [Mon, 28 Apr 2025 16:32:28 +0000 (17:32 +0100)] 
meson: remove check for 'ip' program

There are no references to an "IP" conf variable nor a meson
'ip_prog' variable so the check serves no purpose.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: remove use hardcoded DMIDECODE path
Daniel P. Berrangé [Mon, 28 Apr 2025 16:22:14 +0000 (17:22 +0100)] 
util: remove use hardcoded DMIDECODE path

Allow virCommand to find 'dmidecode' in $PATH. This command is only
usable when running privileged since it relies on reading from a
privileged kernel file. Thus we can assume both 'bin' and 'sbin' dirs
will be in $PATH and virFindFileInPath will do the right thing to
find it when called by virCommand.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agomeson: stop setting conf var for required programs
Daniel P. Berrangé [Mon, 28 Apr 2025 16:19:14 +0000 (17:19 +0100)] 
meson: stop setting conf var for required programs

There is no reference to PERL, PYTHON3, XMLLINT or XSLTPROC conf
variables anywhere, only the ${name}_prog meson variables are
used.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agobuild-aux: add missing definition of PERL variable
Daniel P. Berrangé [Mon, 28 Apr 2025 16:17:37 +0000 (17:17 +0100)] 
build-aux: add missing definition of PERL variable

Currently $(PERL) is expanding to nothing, but the spacing-check.pl test
luckily still works via the shebang.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agodocs: stop setting vars for docs tools
Daniel P. Berrangé [Mon, 28 Apr 2025 10:51:01 +0000 (11:51 +0100)] 
docs: stop setting vars for docs tools

Nothing in the tree references RST2MAN or RST2HTML5 variables, only
rst2man_prog & rst2html5_prog, so the former can be removed.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: stop hardcoding 'ifconfig' path
Daniel P. Berrangé [Mon, 28 Apr 2025 10:47:34 +0000 (11:47 +0100)] 
util: stop hardcoding 'ifconfig' path

Change the source to assume use of 'ifconfig' on FreeBSD builds,
allowing virCommand to report missing commands at runtime.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: stop hardcoding bhyve, bhyvectl, bhyveload paths
Daniel P. Berrangé [Mon, 28 Apr 2025 10:47:34 +0000 (11:47 +0100)] 
util: stop hardcoding bhyve, bhyvectl, bhyveload paths

Change the meson rules to always enable bhyve if on a FreeBSD host,
unless the meson options say not to.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoutil: stop hardcoding numad path
Daniel P. Berrangé [Mon, 28 Apr 2025 10:47:34 +0000 (11:47 +0100)] 
util: stop hardcoding numad path

Change the meson rules to always enable numad if on a Linux host, unless
the meson options say not to.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agotests: storage hardcoding paths for mount & vgchange
Daniel P. Berrangé [Mon, 28 Apr 2025 10:43:30 +0000 (11:43 +0100)] 
tests: storage hardcoding paths for mount & vgchange

This is redundant since the tests will strip any path component from the
binary name before comparison.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agostorage: stop hardcoding paths for mkfs, mount, umount
Daniel P. Berrangé [Mon, 28 Apr 2025 10:42:13 +0000 (11:42 +0100)] 
storage: stop hardcoding paths for mkfs, mount, umount

This was always undesirable but now causes problems on Fedora 42
where at build time we detect a /sbin path but at runtime this
will only exist on upgraded machines, not fresh installs.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoPost-release version bump to 11.4.0
Jiri Denemark [Fri, 2 May 2025 07:31:06 +0000 (09:31 +0200)] 
Post-release version bump to 11.4.0

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
3 months agoRelease of libvirt-11.3.0 v11.3.0
Jiri Denemark [Fri, 2 May 2025 07:25:45 +0000 (09:25 +0200)] 
Release of libvirt-11.3.0

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
3 months agoTranslated using Weblate (Romanian)
Remus-Gabriel Chelu [Thu, 1 May 2025 09:25:07 +0000 (09:25 +0000)] 
Translated using Weblate (Romanian)

Currently translated at 35.4% (3875 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ro/

Signed-off-by: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>
3 months agoTranslated using Weblate (Spanish)
Nicolás Gal [Thu, 1 May 2025 09:25:07 +0000 (09:25 +0000)] 
Translated using Weblate (Spanish)

Currently translated at 53.4% (5834 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/es/

Signed-off-by: Nicolás Gal <nialegal@yandex.com>
3 months agoTranslated using Weblate (Romanian) v11.3.0-rc2
Remus-Gabriel Chelu [Tue, 29 Apr 2025 09:08:35 +0000 (09:08 +0000)] 
Translated using Weblate (Romanian)

Currently translated at 33.2% (3630 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ro/

Signed-off-by: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>
3 months agoTranslated using Weblate (Ukrainian)
Yuri Chornoivan [Tue, 29 Apr 2025 09:08:35 +0000 (09:08 +0000)] 
Translated using Weblate (Ukrainian)

Currently translated at 100.0% (10918 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/uk/

Signed-off-by: Yuri Chornoivan <yurchor@ukr.net>
3 months agoTranslated using Weblate (Chinese (Simplified) (zh_CN))
QiangWei Zhang [Tue, 29 Apr 2025 09:08:34 +0000 (09:08 +0000)] 
Translated using Weblate (Chinese (Simplified) (zh_CN))

Currently translated at 92.1% (10066 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/zh_CN/

Signed-off-by: QiangWei Zhang <zhang.qiangwei@zte.com.cn>
Translated using Weblate (Chinese (Simplified) (zh_CN))

Currently translated at 92.1% (10065 of 10918 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/zh_CN/

Signed-off-by: QiangWei Zhang <zhang.qiangwei@zte.com.cn>
3 months agoUpdate translation files
Weblate [Tue, 29 Apr 2025 09:08:33 +0000 (09:08 +0000)] 
Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/

Signed-off-by: Fedora Weblate Translation <i18n@lists.fedoraproject.org>
3 months agoscripts: Fix reading list of files in mock-noinline.py
Michal Privoznik [Mon, 28 Apr 2025 11:37:43 +0000 (13:37 +0200)] 
scripts: Fix reading list of files in mock-noinline.py

The mock-noinline.py script is fed list of files through its
stdin, each file on its own line. Unfortunately, the way the
script is written does nothing as the trailing newline character
prevents any .endswith() match. Strip each line of white spaces.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agoutil: Add missing G_NO_INLINE annotation
Michal Privoznik [Mon, 28 Apr 2025 11:36:45 +0000 (13:36 +0200)] 
util: Add missing G_NO_INLINE annotation

There are two functions that are mocked, but are missing required
G_NO_INLINE attribute: virFirewallDIsRegistered() and
virHostCPUGetPhysAddrSize(). Add it.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 months agopo: Refresh potfile for v11.3.0 v11.3.0-rc1
Jiri Denemark [Mon, 28 Apr 2025 08:44:55 +0000 (10:44 +0200)] 
po: Refresh potfile for v11.3.0

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
3 months agoTranslated using Weblate (Finnish)
Ricky Tigg [Tue, 15 Apr 2025 09:30:37 +0000 (09:30 +0000)] 
Translated using Weblate (Finnish)

Currently translated at 21.8% (2381 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/fi/

Signed-off-by: Ricky Tigg <ricky.tigg@gmail.com>
3 months agoTranslated using Weblate (Georgian)
Weblate [Tue, 15 Apr 2025 09:30:37 +0000 (09:30 +0000)] 
Translated using Weblate (Georgian)

Currently translated at 4.2% (464 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ka/

Signed-off-by: Weblate <noreply-mt-weblate@weblate.org>
3 months agoTranslated using Weblate (Korean)
김인수 [Tue, 15 Apr 2025 09:30:36 +0000 (09:30 +0000)] 
Translated using Weblate (Korean)

Currently translated at 100.0% (10917 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ko/

Signed-off-by: 김인수 <simmon@nplob.com>
Translated using Weblate (Korean)

Currently translated at 99.5% (10873 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ko/

Signed-off-by: 김인수 <simmon@nplob.com>
Translated using Weblate (Korean)

Currently translated at 99.3% (10850 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ko/

Signed-off-by: 김인수 <simmon@nplob.com>
Translated using Weblate (Korean)

Currently translated at 98.7% (10785 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ko/

Signed-off-by: 김인수 <simmon@nplob.com>
Translated using Weblate (Korean)

Currently translated at 98.7% (10781 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/ko/

Signed-off-by: 김인수 <simmon@nplob.com>
3 months agoTranslated using Weblate (Spanish)
Nicolás Gal [Tue, 15 Apr 2025 09:30:36 +0000 (09:30 +0000)] 
Translated using Weblate (Spanish)

Currently translated at 53.2% (5808 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/es/

Signed-off-by: Nicolás Gal <nialegal@yandex.com>
Translated using Weblate (Spanish)

Currently translated at 52.9% (5780 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/es/

Signed-off-by: Nicolás Gal <nialegal@yandex.com>
Translated using Weblate (Spanish)

Currently translated at 52.7% (5759 of 10917 strings)

Translation: libvirt/libvirt
Translate-URL: https://translate.fedoraproject.org/projects/libvirt/libvirt/es/

Signed-off-by: Nicolás Gal <nialegal@yandex.com>
3 months agoremote: expand some debug messages for socket detection
Daniel P. Berrangé [Thu, 17 Apr 2025 17:05:44 +0000 (18:05 +0100)] 
remote: expand some debug messages for socket detection

Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agokbase: update docs to account for changed error message
Daniel P. Berrangé [Thu, 17 Apr 2025 17:09:03 +0000 (18:09 +0100)] 
kbase: update docs to account for changed error message

The updated doc refers to both the old and new error message, as users
with old deployed versions will still be pointed to the current online
docs URL.

Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoremote: improve error message when no URI is set
Daniel P. Berrangé [Thu, 17 Apr 2025 17:06:02 +0000 (18:06 +0100)] 
remote: improve error message when no URI is set

When no URI is set we try to guess what daemon to connect to by looking
for any listening sockets. If there are no listening sockets, however,
we don't even know what daemon the user expected to connect to. The
error message in this case is not especially clear

This tweaks the error message to try to make the problem easier to
understand.

Resolves: https://issues.redhat.com/browse/RHEL-87177
Reviewed-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoqemucapabilitiestest: Final update for qemu-10.0 release on x86_64 of the 'amdsev...
Peter Krempa [Tue, 22 Apr 2025 19:14:07 +0000 (21:14 +0200)] 
qemucapabilitiestest: Final update for qemu-10.0 release on x86_64 of the 'amdsev' variant

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agoqemucapabilitiestest: Final update for qemu-10.0 release on x86_64
Peter Krempa [Thu, 20 Mar 2025 16:28:44 +0000 (17:28 +0100)] 
qemucapabilitiestest: Final update for qemu-10.0 release on x86_64

Update the data after the release.

Notable changes:
 - the 7.0 machine types became deprecated

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agorpm: Enable KVM for riscv64 on RHEL 10+
Andrea Bolognani [Fri, 14 Mar 2025 09:44:36 +0000 (10:44 +0100)] 
rpm: Enable KVM for riscv64 on RHEL 10+

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agoqemu_rdp: Fix a typo existance -> existence
Martin Kletzander [Wed, 16 Apr 2025 08:04:34 +0000 (10:04 +0200)] 
qemu_rdp: Fix a typo existance -> existence

Fixes: bd473480b443aa2561236dfd903535aa778d99a8
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
3 months agopython: Do not explicitly state variables are global when only read
Martin Kletzander [Wed, 16 Apr 2025 07:59:44 +0000 (09:59 +0200)] 
python: Do not explicitly state variables are global when only read

If a variable is not modified in a scope there is no need for the use of
global in such scope.  Without this patch build fails with:

F824 `global ...` is unused: name is never assigned in scope

It is a bit difficult to find more information on that message and error
code, I found it here:

    https://docs.astral.sh/ruff/rules/global-variable-not-assigned/

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
3 months agonwfilter: Fix erroneous pointer passing to g_clear_pointer
Martin Kletzander [Wed, 16 Apr 2025 07:38:53 +0000 (09:38 +0200)] 
nwfilter: Fix erroneous pointer passing to g_clear_pointer

Commit 5de27c32a18f wanted to fix a possible double free, but by mistake
did not pass a reference to the variable.  This made virtnwfilterd
coredump in our daily CI build.

Fixes: 5de27c32a18f1da4969a679a2385d45cf0279699
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
3 months agovirbitmap: Change return type of virBitmapToData to void
Alexander Kuznetsov [Wed, 26 Mar 2025 11:58:02 +0000 (14:58 +0300)] 
virbitmap: Change return type of virBitmapToData to void

This function return value is invariant since e59b8f9, so change
its type and remove all dependent checks.

Found by Linux Verification Center (linuxtesting.org) with Svace.

Signed-off-by: Artem Chernyshev <artem.chernyshev@red-soft.ru>
Signed-off-by: Alexander Kuznetsov <kuznetsovam@altlinux.org>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
3 months agodocs: formatdomain: Metion virtio model for currentAddress
Han Han [Mon, 14 Apr 2025 06:04:34 +0000 (14:04 +0800)] 
docs: formatdomain: Metion virtio model for currentAddress

As commit 50981052a5 mentioned, the currentAddress in live domain
XML, requires virtio model as well.

Signed-off-by: Han Han <hhan@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agobhyve: use const virDomainDef pointer in bhyveBuildNetArgStr()
Roman Bogorodskiy [Sun, 13 Apr 2025 05:13:51 +0000 (07:13 +0200)] 
bhyve: use const virDomainDef pointer in bhyveBuildNetArgStr()

As virDomainNet* functions were converted to use const virDomainDef
pointers, update bhyveBuildNetArgStr() as well, like it was before it was
changed in e1e40b5035.

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agoconf: use const virDomainDef pointers
Roman Bogorodskiy [Thu, 10 Apr 2025 14:12:43 +0000 (16:12 +0200)] 
conf: use const virDomainDef pointers

Some virDomainNet* functions use virDomainDef pointers even though they
don't modify the domain config, so switch to const pointers there.

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 months agonss: Fix memory leak in findLease()
Alexander Kuznetsov [Tue, 15 Apr 2025 11:48:38 +0000 (14:48 +0300)] 
nss: Fix memory leak in findLease()

path is allocated by asprintf() and must be freed later if realloc() fails.

Restructure the code to allocate path only after realloc() succeeds,
avoiding the need for an extra free().

Found by Linux Verification Center (linuxtesting.org) with Svace.

Reported-by: Dmitry Fedin <d.fedin@fobos-nt.ru>
Signed-off-by: Alexander Kuznetsov <kuznetsovam@altlinux.org>
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agonwfilter: Avoid possible double free in virNWFilterInstReset()
Alexander Kuznetsov [Mon, 14 Apr 2025 13:51:34 +0000 (16:51 +0300)] 
nwfilter: Avoid possible double free in virNWFilterInstReset()

virNWFilterInstReset() may be called multiple times, leading to a double g_free()
Replace plain g_free() with g_clear_pointer() to prevent this

Found by Linux Verification Center (linuxtesting.org) with Svace.

Reported-by: Dmitry Fedin <d.fedin@fobos-nt.ru>
Signed-off-by: Alexander Kuznetsov <kuznetsovam@altlinux.org>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agovirsh: prevent potential NULL dereference
Alexander Kuznetsov [Mon, 14 Apr 2025 13:32:10 +0000 (16:32 +0300)] 
virsh: prevent potential NULL dereference

virXPathString() can return NULL so we need to use STRNEQ_NULLABLE here

Found by Linux Verification Center (linuxtesting.org) with Svace.

Reported-by: Dmitry Fedin <d.fedin@fobos-nt.ru>
Signed-off-by: Alexander Kuznetsov <kuznetsovam@altlinux.org>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agobhyve: capabilities: advertise RNG device support
Roman Bogorodskiy [Mon, 14 Apr 2025 16:34:40 +0000 (18:34 +0200)] 
bhyve: capabilities: advertise RNG device support

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
3 months agodocs: drvbhyve: document virtio-rnd support
Roman Bogorodskiy [Fri, 11 Apr 2025 18:47:03 +0000 (20:47 +0200)] 
docs: drvbhyve: document virtio-rnd support

 - Document the virtio random number generator device support
 - While here, remove mention of the specific FreeBSD version such as
   10-STABLE, and just refer to the latest supported release.

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agoNEWS: bhyve: document new features
Roman Bogorodskiy [Fri, 11 Apr 2025 18:43:58 +0000 (20:43 +0200)] 
NEWS: bhyve: document new features

Document the virtio random number generator device support
and <interface type='network'> support.

Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agovsh: Turn _vshControl::progname into a const string
Michal Privoznik [Fri, 11 Apr 2025 14:40:41 +0000 (16:40 +0200)] 
vsh: Turn _vshControl::progname into a const string

The aim of the progname member of the _vshControl struct is to
point to argv[0] which is then used in vshOutputLogFile() to
create a prefix for a log message. But the member is never
modified (nor it should be) and thus can be a const char *.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
3 months agovsh: Free commands in vshDeinit()
Michal Privoznik [Fri, 11 Apr 2025 14:34:50 +0000 (16:34 +0200)] 
vsh: Free commands in vshDeinit()

Whether virsh/virt-admin is running in interactive or
non-interactive mode, vshControl::cmd contains the batch of last
executed commands as a linked list. Just look into
vshCommandParse(). Free the linked list in vshDeinit() to avoid
memleak.

  3,312 bytes in 3 blocks are still reachable in loss record 572 of 577
     at 0x484CEF3: calloc (vg_replace_malloc.c:1675)
     by 0x506AB29: g_malloc0 (in /usr/lib64/libglib-2.0.so.0.8200.5)
     by 0x1B74B8: vshCmdNew (vsh.c:1466)
     by 0x1B7A80: vshCommandParse (vsh.c:1615)
     by 0x1B8458: vshCommandStringParse (vsh.c:1874)
     by 0x1419C1: virshParseArgv (virsh.c:773)
     by 0x141D11: main (virsh.c:879)

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agoNEWS: Mention fix of crash on disk hotplug failure
Peter Krempa [Fri, 11 Apr 2025 11:57:03 +0000 (13:57 +0200)] 
NEWS: Mention fix of crash on disk hotplug failure

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agoqemuDomainAttachDiskGeneric: Report errors from 'qemuBuildThrottleFiltersAttachPrepar...
Peter Krempa [Fri, 11 Apr 2025 11:42:37 +0000 (13:42 +0200)] 
qemuDomainAttachDiskGeneric: Report errors from 'qemuBuildThrottleFiltersAttachPrepareBlockdev'

'qemuBuildThrottleFiltersAttachPrepareBlockdev' can fail when
constructing JSON props, but otherwise always retruns a pointer even if
there's nothing to do.

The code in 'qemuDomainAttachDiskGeneric' didn't handle this properly as
it considered NULL as "nothing to do". Return the failure instead and
check if tere's something to do by looking at 'nfilterdata'

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 months agoqemu: block: Don't crash if qemuBlockThrottleFiltersDetach gets NULL @data
Peter Krempa [Fri, 11 Apr 2025 11:39:06 +0000 (13:39 +0200)] 
qemu: block: Don't crash if qemuBlockThrottleFiltersDetach gets NULL @data

'qemuBlockThrottleFiltersDetach' crashes if @data is NULL. That can
happen in 'qemuDomainAttachDiskGeneric' as it's used as a rollback path
in cases when we didn't yet initialize the filter struct.

Fix it by tolerating NULL @data.

Closes: https://gitlab.com/libvirt/libvirt/-/issues/765
Fixes: 9a6560f066d1e65502d901f32ff2e91ffed3b209
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemu: make passt+vhostuser reconnect behave identically to passt+user
Laine Stump [Fri, 4 Apr 2025 23:44:52 +0000 (19:44 -0400)] 
qemu: make passt+vhostuser reconnect behave identically to passt+user

When "original passt" support was added, we decided that we always
wanted to reconnect (i.e. restart the passt process) if it was somehow
terminated. Generic vhost-user, on the other hand, only turns on
reconnect if specified by the user in the config. But there is no
reason to require the user to specify this if the other end of the
vhost-user socket is a passt process - we know what has happened and
what we want to do; no reason to do the *wrong* thing by default, and
force the user to make an arbitrary decision about what to add to the
config in order to make it do the *right* thing; instead we just
hardcode it to always do the right thing.

(NB: when the backend is passt, <interface type='vhostuser'> has
always ignored the reconnect setting in <source> when parsing and
formatting, just as it has always ignored the socket path (since that
also is not user configurable for the passt backend)

Resolves: https://issues.redhat.com/browse/RHEL-80169

Signed-off-by: Laine Stump <laine@redhat.com>
Tested-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemu: put vhost-user code that's special for passt in a helper function
Laine Stump [Fri, 4 Apr 2025 23:38:28 +0000 (19:38 -0400)] 
qemu: put vhost-user code that's special for passt in a helper function

Rather than duplicating these two lines of chr device object setup for
hotplug and domain start, put them in a helper function that's called
from both places. That way when we need to setup *more* stuff specific
to passt+vhostuser, we can just add it in that one place.

Signed-off-by: Laine Stump <laine@redhat.com>
Tested-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemu: respond to NETDEV_VHOST_USER_DISCONNECTED event
Laine Stump [Fri, 4 Apr 2025 21:16:43 +0000 (17:16 -0400)] 
qemu: respond to NETDEV_VHOST_USER_DISCONNECTED event

This response to this event is identical to NETDEV_STREAM_DISCONNECTED
(start a new passt process to replace the one that just disappeared -
see commitf62ce81b8a5), except that the new passt process will have
"--vhost-user" appended to the commandline. Fortunately that
difference is already handled based on the virDomainNetDef contents,
so we can, in fact, respond to the new event in exactly the same
manner.

Signed-off-by: Laine Stump <laine@redhat.com>
Tested-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemu: make processNetDevStreamDisconnectedEvent() reusable
Laine Stump [Fri, 4 Apr 2025 20:57:21 +0000 (16:57 -0400)] 
qemu: make processNetDevStreamDisconnectedEvent() reusable

We will be adding a new event whose response will be *exactly* the
same as the response to NETDEV_STREAM_DISCONNECTED. Rather than doing
a copy-paste of the complete function that does the processing, turn
that function into something more generic that takes the name of the
event as an arg (the event name is only used in log messages).

Signed-off-by: Laine Stump <laine@redhat.com>
Tested-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemu: remove nonsensical sanity check in processNetdevStreamDisconnectedEvent()
Laine Stump [Fri, 4 Apr 2025 20:48:23 +0000 (16:48 -0400)] 
qemu: remove nonsensical sanity check in processNetdevStreamDisconnectedEvent()

By definition QEMU will never send a NETDEV_STREAM_DISCONNECTED event
if it doesn't support the reconnect option for a stream netdev. And
even if, by some comedy of errors, it did send
NETDEV_STREAM_DISCONNECTED in that case, our response to the event
doesn't request anything at all of QEMU (much less something that
would fail if QEMU didn't understand NETDEV_STREAM_DISCONNECTED) - it
just starts a new passt process to replace the one that has been
terminated, so we don't need to check the QEMU capabilities for
QEMU_CAPS_NETDEV_STREAM_RECONNECT.

Signed-off-by: Laine Stump <laine@redhat.com>
Tested-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
4 months agoqemuDomainBlockCopyCommon: Don't revoke access to file twice on failure
Peter Krempa [Thu, 10 Apr 2025 14:18:29 +0000 (16:18 +0200)] 
qemuDomainBlockCopyCommon: Don't revoke access to file twice on failure

If the copy job fails to start up when calling the 'blockdev-mirror'
command the code would call qemuDomainStorageSourceChainAccessRevoke()
twice; once right after the monitor call and the second time in the
'endjob' section.

Remove the one directly after the monitor call and let the common
cleanup handle it.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>