]> xenbits.xensource.com Git - libvirt.git/log
libvirt.git
3 years agotests: do not test dnsmasq older than 2.67
Ján Tomko [Tue, 14 Dec 2021 18:10:29 +0000 (19:10 +0100)]
tests: do not test dnsmasq older than 2.67

Prepare to retire older versions by droping older tests.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
3 years agoutil: dnsmasqCapsSetFromBuffer: use error label
Ján Tomko [Tue, 14 Dec 2021 16:35:07 +0000 (17:35 +0100)]
util: dnsmasqCapsSetFromBuffer: use error label

Rename 'fail' to 'error' to match the prevalent usage.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Laine Stump <laine@redhat.com>
3 years agomeson: Detect XDR only when needed
Michal Privoznik [Wed, 8 Dec 2021 08:32:55 +0000 (09:32 +0100)]
meson: Detect XDR only when needed

If remote driver was disabled there is no need to check whether
host has a XDR library installed.

Resolves: https://gitlab.com/libvirt/libvirt/-/issues/196
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agomeson: Require XDR for wireshark
Michal Privoznik [Wed, 8 Dec 2021 12:12:17 +0000 (13:12 +0100)]
meson: Require XDR for wireshark

The way our wireshark dissector works is by providing decoders
for primitive types (like integers, string, double, etc.) and
then parsing virsomethingprotocol.x files and generating complex
decoders for RPC. This obviously means that XDR is required for
the dissector, but corresponding check was missing.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoadmin: Build only when RPC is available
Michal Privoznik [Wed, 8 Dec 2021 11:16:28 +0000 (12:16 +0100)]
admin: Build only when RPC is available

The admin module is very closely tied to RPC. If we are
building without RPC support there's not much use for the
admin module, in fact it fails to build.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agologging: Build log manager only when RPC is available
Michal Privoznik [Wed, 8 Dec 2021 11:14:44 +0000 (12:14 +0100)]
logging: Build log manager only when RPC is available

The logging manager is very closely tied to RPC. If we are
building without RPC support there's not much use for the
manager, in fact it fails to build.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agorpc: Build only when XDR is available
Michal Privoznik [Wed, 8 Dec 2021 11:26:10 +0000 (12:26 +0100)]
rpc: Build only when XDR is available

Our RPC layer is as tied to XDR as possible. Therefore, if we
haven't detected and XDR library there's not much sense in trying
to build RPC layer.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agorpc: Separate out socket code into another static lib
Michal Privoznik [Wed, 8 Dec 2021 11:25:30 +0000 (12:25 +0100)]
rpc: Separate out socket code into another static lib

There's nothing RPC specific about virnettlscontext.c or
virnetsocket.c. We use TLS for other things than just RPC
encryption (e.g. for generating random numbers) and sockets can
be used even without RPC.

Move these two sources into a static library (virt_socket) so
that other areas can use it even when RPC is disabled.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agolibvirt-stream: Don't require RPC module
Michal Privoznik [Wed, 8 Dec 2021 11:12:27 +0000 (12:12 +0100)]
libvirt-stream: Don't require RPC module

When implementing sparse streams, one of improvements I did was
to increase client buffer size for sending/receiving stream data
(commit v1.3.5-rc1~502). Previously, we were using 64KiB buffer
while packets on RPC are 256KiB (usable data is slightly less
because of the header). This meant that it took multiple calls of
virStreamRecv()/virStreamSend() to serve a single packet of data.
In my fix, I've included the virnetprotocol.h file which provides
VIR_NET_MESSAGE_LEGACY_PAYLOAD_MAX macro which is the exact size
of data in a single packet. However, including the file from
libvirt-stream.c which implements public APIs is not right. If
RPC module is not built then the file doesn't exists.

Redefine the macro and drop the include. The size can never
change anyways.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agodocs: domain: Clarify on the dangers of migrating with hyperv-passthrough enabled
Tim Wiederhake [Tue, 14 Dec 2021 16:21:16 +0000 (17:21 +0100)]
docs: domain: Clarify on the dangers of migrating with hyperv-passthrough enabled

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoFix some typos
Tim Wiederhake [Tue, 14 Dec 2021 15:01:15 +0000 (16:01 +0100)]
Fix some typos

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: Drop driver parameter from qemuDomainSetFakeReboot
Jiri Denemark [Tue, 14 Dec 2021 15:36:15 +0000 (16:36 +0100)]
qemu: Drop driver parameter from qemuDomainSetFakeReboot

And its callers. The parameter is no longer used since virDomainObjSave
was replaced with qemuDomainSaveStatus wrapper.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: Use qemuDomainSaveStatus
Jiri Denemark [Tue, 14 Dec 2021 15:33:35 +0000 (16:33 +0100)]
qemu: Use qemuDomainSaveStatus

It is a nice wrapper around virDomainObjSave which logs a warning, but
otherwise ignores the error. Let's use it where appropriate.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: Add support for return-path migration capability
Jiri Denemark [Wed, 8 Dec 2021 15:19:26 +0000 (16:19 +0100)]
qemu: Add support for return-path migration capability

When return-path is enabled, QEMU on the source host won't report
completed migration until the destination QEMU sends a confirmation it
successfully loaded all data. Libvirt would detect such situation in the
Finish phase and report the error read from QEMU's stderr back to the
source, but using return-path could give use a bit better error
reporting with an earlier restart of vCPUs on the source.

The capability is only enabled when the connection between QEMU
processes on the source and destination hosts is bidirectional. In other
words, only when VIR_MIGRATE_TUNNELLED is not set, because our tunnel
only allows one-way communication from the source to the destination.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: Support enabling migration caps unless a flag is used
Jiri Denemark [Wed, 8 Dec 2021 15:16:14 +0000 (16:16 +0100)]
qemu: Support enabling migration caps unless a flag is used

So far we were enabling specific migration capabilities when a
corresponding API flag is set. We need to generalize our code to be able
to enable some migration capabilities unless a particular API flag is
used.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: report max number of SEV guests
Daniel P. Berrangé [Wed, 8 Dec 2021 19:53:45 +0000 (14:53 -0500)]
qemu: report max number of SEV guests

Different CPU generations have different limits on the number
of SEV/SEV-ES guests that can be run. Since both limits come
from the same overall set, there is typically also BIOS config
to set the tradeoff betweeen SEV and SEV-ES guest limits.

This is important information to expose for a mgmt application
scheduling guests to hosts.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoutil: pull CPUID helper function out of CPU driver
Daniel P. Berrangé [Fri, 10 Dec 2021 16:14:49 +0000 (16:14 +0000)]
util: pull CPUID helper function out of CPU driver

This will be needed directly in the QEMU driver in a later patch.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoinclude: define parameters for reporting SEV guest limits
Daniel P. Berrangé [Thu, 9 Dec 2021 16:51:01 +0000 (11:51 -0500)]
include: define parameters for reporting SEV guest limits

There are limits on the number of SEV/SEV-ES guests that can
be run on machines, which may be influenced by firmware
settings. This is important to expose to users.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoconf: extend domain capabilities for max SEV guest count
Daniel P. Berrangé [Thu, 9 Dec 2021 16:47:43 +0000 (11:47 -0500)]
conf: extend domain capabilities for max SEV guest count

There are limits on the number of SEV/SEV-ES guests that can
be run on machines, which may be influenced by firmware
settings. This is important to expose to users.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agotools: add 'nodesevinfo' virsh command
Daniel P. Berrangé [Wed, 8 Dec 2021 13:28:48 +0000 (08:28 -0500)]
tools: add 'nodesevinfo' virsh command

While some SEV info is reported in the domain capabilities,
for reasons of size, this excludes the certificates. The
nodesevinfo command provides the full set of information.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agotools: add 'domlaunchsecinfo' virsh command
Daniel P. Berrangé [Wed, 8 Dec 2021 12:53:00 +0000 (07:53 -0500)]
tools: add 'domlaunchsecinfo' virsh command

This command reports the launch security parameters for
a guest, allowing an external tool to perform a launch
attestation.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoqemu: report new launch security parameters
Daniel P. Berrangé [Wed, 8 Dec 2021 12:52:33 +0000 (07:52 -0500)]
qemu: report new launch security parameters

Report extra info about the SEV setup, returning those fields
that are required to calculate the expected launch measurement

 HMAC(0x04 || API_MAJOR || API_MINOR || BUILD ||
      GCTX.POLICY || GCTX.LD || MNONCE; GCTX.TIK)

specified in section 6.5.1 of AMD Secure Encrypted
Virtualization API.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoqemu: add monitor APIs for query-sev
Daniel P. Berrangé [Wed, 8 Dec 2021 12:05:44 +0000 (07:05 -0500)]
qemu: add monitor APIs for query-sev

We're only returning the set of fields needed to perform an
attestation, per the SEV API docs.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoqemu: report error querying launch params for inactive guest
Daniel P. Berrangé [Wed, 8 Dec 2021 12:51:43 +0000 (07:51 -0500)]
qemu: report error querying launch params for inactive guest

Querying launch params on a inactive guest currently triggers
a warning about the monitor being NULL.

https://bugzilla.redhat.com/show_bug.cgi?id=2030437

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agoinclude: add new launch security parameters
Daniel P. Berrangé [Wed, 8 Dec 2021 12:50:24 +0000 (07:50 -0500)]
include: add new launch security parameters

Three more parameters are required in order that clients can
perform a launch attestation on the SEV guest.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
3 years agolibxl: Implement domainGetMessages API
Jim Fehlig [Mon, 13 Dec 2021 23:59:55 +0000 (16:59 -0700)]
libxl: Implement domainGetMessages API

Since commit 46783e6307a, the 'virsh dominfo' command calls
virDomainGetMessages to report any messages from the domain.
Hypervisors not implementing the API now get the following
libvirtd log message when clients invoke 'virsh dominfo'

this function is not supported by the connection driver: virDomainGetMessages

Although libxl currently does not support any tainting or
deprecation messages, provide an implementation to squelch
the previously unseen error message when collecting dominfo.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agodocs: domain: Add documentation for hyperv passthrough mode
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
docs: domain: Add documentation for hyperv passthrough mode

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agotests: Add tests for hyperv-passthrough
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
tests: Add tests for hyperv-passthrough

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoschema: hyperv: Add mode "passthrough"
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
schema: hyperv: Add mode "passthrough"

This mode will enable all enlightenments known to the hypervisor. See
https://bugzilla.redhat.com/show_bug.cgi?id=1851249

Example:

  <features>
    <hyperv mode='passthrough'/>
    ...
  </features>

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoconf: domain: Add hyperv passthrough mode
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
conf: domain: Add hyperv passthrough mode

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agodocs: domain: Add documentation for "hyperv"'s new "mode" attribute
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
docs: domain: Add documentation for "hyperv"'s new "mode" attribute

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agovirDomainDefFormatFeatures: Write attribute "mode" of element "hyperv"
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
virDomainDefFormatFeatures: Write attribute "mode" of element "hyperv"

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agovirDomainFeaturesHyperVDefParse: Read attribute "mode" of element "hyperv"
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
virDomainFeaturesHyperVDefParse: Read attribute "mode" of element "hyperv"

Currently, this attribute may either have a value of "custom", or be absent
(which defaults to "custom"), for backwards compatibility.

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoconf: domain: Define enum for HyperV mode
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
conf: domain: Define enum for HyperV mode

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoschema: Add optional "mode" attribute to hyperv
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
schema: Add optional "mode" attribute to hyperv

Allow for an optional attribute "mode", set to the string "custom".

Later patches will introduce different modes. Omitting this attribute
will default to "custom" for backwards compatibility.

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoschema: Wrap hyperv element in choice and group
Tim Wiederhake [Thu, 25 Nov 2021 18:57:49 +0000 (19:57 +0100)]
schema: Wrap hyperv element in choice and group

This does not change the schema, but will make upcoming changes
easier.

Signed-off-by: Tim Wiederhake <twiederh@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoutil: use g_auto in virNodeSuspendHelper
Ján Tomko [Mon, 13 Dec 2021 18:52:28 +0000 (19:52 +0100)]
util: use g_auto in virNodeSuspendHelper

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: refactor virNodeSuspendSetNodeWakeup
Ján Tomko [Mon, 13 Dec 2021 18:51:42 +0000 (19:51 +0100)]
util: refactor virNodeSuspendSetNodeWakeup

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: iscsi: use two vars in CreateIfaceIQN
Ján Tomko [Fri, 10 Dec 2021 16:25:04 +0000 (17:25 +0100)]
util: iscsi: use two vars in CreateIfaceIQN

Do not mix automatic and manual cleanup.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: dnsmasq: refactor CapsRefresh
Ján Tomko [Fri, 10 Dec 2021 16:21:27 +0000 (17:21 +0100)]
util: dnsmasq: refactor CapsRefresh

Use two variables with automatic cleanup instead of reusing one.

Remove the pointless cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agodocs: use g_auto in virCommand example
Ján Tomko [Mon, 13 Dec 2021 18:47:25 +0000 (19:47 +0100)]
docs: use g_auto in virCommand example

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agotests: storagevolxml2argvtest: do not reuse cmd
Ján Tomko [Mon, 13 Dec 2021 18:31:11 +0000 (19:31 +0100)]
tests: storagevolxml2argvtest: do not reuse cmd

Reduce the scope of the variable to avoid mixing automatic and manual
cleanup.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agotests: use g_auto in testCompareXMLToConfFiles
Ján Tomko [Mon, 13 Dec 2021 18:30:23 +0000 (19:30 +0100)]
tests: use g_auto in testCompareXMLToConfFiles

Use g_auto for dnsmasq context and remove the cmd variable.
It was unused since its introduction in:
commit 8b32c80df089a3612a0448c1a92abc2071d6b6a9

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agovmware: refactor vmwareExtractVersion
Ján Tomko [Mon, 13 Dec 2021 17:33:11 +0000 (18:33 +0100)]
vmware: refactor vmwareExtractVersion

Use g_auto for cleanup and remove the cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agovmware: use g_auto in vmwareLoadDomains
Ján Tomko [Mon, 13 Dec 2021 17:32:53 +0000 (18:32 +0100)]
vmware: use g_auto in vmwareLoadDomains

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agovmware: refactor vmwareUpdateVMStatus
Ján Tomko [Mon, 13 Dec 2021 17:14:05 +0000 (18:14 +0100)]
vmware: refactor vmwareUpdateVMStatus

Use g_auto and get rid of the cleanup label, as well as the ret
variable.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agovz: utils: use g_auto for virCommand
Ján Tomko [Mon, 13 Dec 2021 15:25:43 +0000 (16:25 +0100)]
vz: utils: use g_auto for virCommand

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzVEGetStringParam
Ján Tomko [Mon, 13 Dec 2021 18:28:27 +0000 (19:28 +0100)]
openvz: refactor openvzVEGetStringParam

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: use g_auto in openvzDomainMigratePerform3Params
Ján Tomko [Mon, 13 Dec 2021 18:27:02 +0000 (19:27 +0100)]
openvz: use g_auto in openvzDomainMigratePerform3Params

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzGetVEStatus
Ján Tomko [Mon, 13 Dec 2021 18:26:06 +0000 (19:26 +0100)]
openvz: refactor openvzGetVEStatus

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzDomainSetBarrierLimit
Ján Tomko [Mon, 13 Dec 2021 18:24:34 +0000 (19:24 +0100)]
openvz: refactor openvzDomainSetBarrierLimit

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzDomainGetBarrierLimit
Ján Tomko [Mon, 13 Dec 2021 18:24:07 +0000 (19:24 +0100)]
openvz: refactor openvzDomainGetBarrierLimit

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzConnectListDefinedDomains
Ján Tomko [Mon, 13 Dec 2021 18:22:28 +0000 (19:22 +0100)]
openvz: refactor openvzConnectListDefinedDomains

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzConnectListDomains
Ján Tomko [Mon, 13 Dec 2021 18:13:24 +0000 (19:13 +0100)]
openvz: refactor openvzConnectListDomains

Use g_auto where possible, reduce scope of some variables and remove
pointless ret and rc variables.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzDomainSetNetwork
Ján Tomko [Mon, 13 Dec 2021 18:08:49 +0000 (19:08 +0100)]
openvz: refactor openvzDomainSetNetwork

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzSetDiskQuota
Ján Tomko [Mon, 13 Dec 2021 18:06:11 +0000 (19:06 +0100)]
openvz: refactor openvzSetDiskQuota

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzSetInitialConfig
Ján Tomko [Mon, 13 Dec 2021 18:00:53 +0000 (19:00 +0100)]
openvz: refactor openvzSetInitialConfig

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzDomainDefineCmd
Ján Tomko [Fri, 10 Dec 2021 16:11:07 +0000 (17:11 +0100)]
openvz: refactor openvzDomainDefineCmd

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzGetVEID
Ján Tomko [Mon, 13 Dec 2021 17:47:47 +0000 (18:47 +0100)]
openvz: refactor openvzGetVEID

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzLoadDomains
Ján Tomko [Mon, 13 Dec 2021 17:46:43 +0000 (18:46 +0100)]
openvz: refactor openvzLoadDomains

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoopenvz: refactor openvzExtractVersionInfo
Ján Tomko [Mon, 13 Dec 2021 17:39:29 +0000 (18:39 +0100)]
openvz: refactor openvzExtractVersionInfo

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: Generate command line for dirty-ring-size
Hyman Huang(黄勇) [Tue, 23 Nov 2021 14:36:59 +0000 (09:36 -0500)]
qemu: Generate command line for dirty-ring-size

On QEMU command line it's represented by the dirty-ring-size
attribute of KVM accelerator.

Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: support dirty ring feature
Hyman Huang(黄勇) [Tue, 23 Nov 2021 14:36:58 +0000 (09:36 -0500)]
qemu: support dirty ring feature

Dirty ring feature was introduced in qemu-6.1.0, this patch
add the corresponding feature named 'dirty-ring', which enable
dirty ring feature when starting VM.

To enable the feature, the following XML needs to be added to
the guest's domain description:

<features>
   <kvm>
     <dirty-ring state='on' size='xxx'>
   </kvm>
</features>

If property "state=on", property "size" must be specified, which
should be power of 2 and range in [1024, 65526].

Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoconf: Turn virDomainDef.kvm_features into a struct
Michal Privoznik [Tue, 14 Dec 2021 09:24:30 +0000 (10:24 +0100)]
conf: Turn virDomainDef.kvm_features into a struct

In future commits we will need to store not just an array of
VIR_TRISTATE_SWITCH_* but also an additional integer. Follow the
example of TCG and introduce a structure where both the array an
integer can live.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
3 years agoexamples: hellolibvirt: fix argc check
Ján Tomko [Tue, 14 Dec 2021 10:59:43 +0000 (11:59 +0100)]
examples: hellolibvirt: fix argc check

https://gitlab.com/libvirt/libvirt/-/issues/255

Reported-by: Jeremy Alcim
Signed-off-by: Ján Tomko <jtomko@redhat.com>
3 years agoutil: remove virFirewallOnceInit()
Laine Stump [Wed, 17 Nov 2021 18:20:53 +0000 (13:20 -0500)]
util: remove virFirewallOnceInit()

There is no longer anything to initialize at binary startup time.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: remove currentBackend from virfirewall.c
Laine Stump [Tue, 16 Nov 2021 19:27:00 +0000 (14:27 -0500)]
util: remove currentBackend from virfirewall.c

Since the currentBackend (direct vs. firewalld) setting is no longer
used for anything, we don't need to set it (either explicitly from
tests, or implicitly during init), and can completely remove it.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: remove check for iptables binary during virFirewallInit
Laine Stump [Tue, 16 Nov 2021 19:12:05 +0000 (14:12 -0500)]
util: remove check for iptables binary during virFirewallInit

It's unclear exactly why this check exists; possibly a parallel to a
long-removed check for the firewall-cmd binary (added to viriptables.c
with the initial support for firewalld in commit bf156385a03 in 2012,
and long since removed), or possibly because virFirewallOnceInit() was
intended to be called at daemon startup, and it seemed like a good
idea to just log this error once when trying to determine whether to
use firewalld, or direct iptables commands, and then not waste time
building commands that could never be executed. The odd thing is that
it would sometimes result in logging an error when it couldn't find a
binary that wasn't needed anyway (e.g., if all the rules were iptables
rules, but ebtables and/or ip6tables weren't also installed).

If we just remove this check, then virCommandRun() will end up logging
an error and failing if the needed binary isn't found when we try to
execute it, which seems like it should just as good (or at least good
enough, especially since we eventually want to get rid of iptables
completely).

So let's remove it!

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: move and rename virFirewallBackendSynchronize()
Laine Stump [Wed, 17 Nov 2021 21:58:40 +0000 (16:58 -0500)]
util: move and rename virFirewallBackendSynchronize()

This function doesn't have anything to do with manipulating
virFirewall objects, but rather should be called in response to dbus
events about the firewalld service. Move this function into
virfirewalld.c, and rename it to virFirewallDSynchronize().

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: simplify virFirewallBackendSynchronize()
Laine Stump [Tue, 16 Nov 2021 19:05:26 +0000 (14:05 -0500)]
util: simplify virFirewallBackendSynchronize()

This function doesn't need to check for a backend - synchronization
with firewalld should always be done whenever firewalld is registered
and available, not just when the firewalld backend is selected.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: eliminate pointless switch in virFirewallApplyRule
Laine Stump [Tue, 16 Nov 2021 17:19:18 +0000 (12:19 -0500)]
util: eliminate pointless switch in virFirewallApplyRule

Since commit b19863640 both useful cases of the switch statement in
this function have made the same call (and the other/default case is
just an error that can never happen). Eliminate the switch to help
eliminate use of currentBackend.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agotests: document why virgdbus must be mocked in networkxml2firewalltest.c
Laine Stump [Mon, 15 Nov 2021 18:28:12 +0000 (13:28 -0500)]
tests: document why virgdbus must be mocked in networkxml2firewalltest.c

It isn't intuitive (to me) that a test just converting xml text into
iptables commands should need to call dbus, so rather than forcing the
next person to look through the commit logs and/or run the test under
gdb to understand why this is needed, just add a short comment in the
source.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agotests: remove unnecessary ret variables and cleanup labels
Laine Stump [Mon, 15 Nov 2021 01:05:32 +0000 (20:05 -0500)]
tests: remove unnecessary ret variables and cleanup labels

Several functions were simplified to remove the only cleanup code at
the cleanup label, making it unnecessary.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agotests: remove firewalld backend tests from virfirewalltest.c
Laine Stump [Sun, 14 Nov 2021 20:50:26 +0000 (15:50 -0500)]
tests: remove firewalld backend tests from virfirewalltest.c

When libvirt added support for firewalld, all iptables/ebtables rules
were added via the firewalld "passthrough" API when firewalld was
enabled (the "firewalld backend"), or run directly by libvirt when
firewalld was disabled (the so-called "direct
backend"). virfirewalltest.c dutifully ran each test twice, once with
the each backend enabled.

But commit b19863640d changed the code to *always* directly run
iptables/ebtables commands, and never use the firewalld passthrough
API, effectively making the direct and firewalld backends identical,
except that when libvirt receives notice that firewalld has restarted
or reloaded its rules, the firewalld backend sends an extra "iptables
-V" command via firewalld's passthrough API (and waits for a response)
prior to running all the rest of the iptables commands directly; this
assures that a newly-restarted firewalld has finished its work on the
filter tables before libvirt starts messing with it. (Because this
code is only executed in response to an event from dbus, it isn't
tested in the unit tests).

In spite of this, we still go through all the virfirewall tests twice
though - once for the direct backend, and once for the firewalld
backend, even though these take the same codepath.

In commit b19863640d I had left this double-testing in thinking that
someday we might go back to actually doing something useful with the
firewalld backend in the course of adding support for native nftables,
but I've now realized that for the case of nftables we will be *even
more* divorced from firewalld, so there is really no point in keeping
this code around any longer. (It's likely/probable that the tests will
be done twice again in the future, but it will be enough different
that it is better to remove this code and re-implement from scratch
when adding the nftables backend, rather than trying to directly
modify the existing code and end up with something even more
confusing).

This patch eliminates all the test duplication in virfirewalltest.c,
including mocking dbus, which is unnecessary since none of the tests
use dbus (for now we ensure that by explicitly setting the virfirewall
backend to DIRECT before any of the tests have run. Eventually the
concept of a "firewalld backend" will disappear completely, but that's
for another patch.)

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: rename iptables operators to something less generic
Laine Stump [Tue, 9 Nov 2021 20:18:42 +0000 (15:18 -0500)]
util: rename iptables operators to something less generic

Rather than calling these "ADD" and "REMOVE", which could be confused
with some other random items with the same names, make them more
specific by prepending "VIR_NETFILTER_" (because they will also be
used by the nftables backend) and rename them to match the
iptables/nftables operators they signify, i.e. INSERT and DELETE, just
to eliminate confusion (in particular, in case someone ever decides
that we need to also use the nftables "add" operator, which appends a
rule to a chain rather than inserting it at the beginning of the
chain).

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoutil: rename/move iptablesFormatNetwork to virSocketAddrFormatWithPrefix
Laine Stump [Sun, 14 Nov 2021 18:09:47 +0000 (13:09 -0500)]
util: rename/move iptablesFormatNetwork to virSocketAddrFormatWithPrefix

This function formats an address + prefix as, e.g. 192.168.122.0/24,
which is useful in places other than iptables. Move it to
virsocketaddr.c and make it public so that others can use it. While
moving, the bit that masks off the host bits of the address is made
optional, so that the function is more generally useful.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agonetwork: eliminate code that uses default iptables chains
Laine Stump [Mon, 8 Nov 2021 17:15:29 +0000 (12:15 -0500)]
network: eliminate code that uses default iptables chains

The network driver has put all its rules into private chains (created
by libvirt) since commit 7431b3eb9a, which was included in
libvirt-5.1.0. When the conversion was made, code was included that
would attempt to delete existing rules in the default chains, to make
it possible to upgrade libvirt without restarting the host OS.

Almost 3 years has passed, and it is doubtful that anyone will be
attempting to upgrade directly from a pre-5.1.0 libvirt to something
as new as 8.0.0 (possibly with the exception of upgrading the entire
OS to a new release, which would include also rebooting), so it is now
safe to remove this code.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoqemu: use automatic cleanup for virCommand
Ján Tomko [Mon, 13 Dec 2021 13:06:20 +0000 (14:06 +0100)]
qemu: use automatic cleanup for virCommand

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agosecurity: apparmor: use automatic cleanup in load_profile
Ján Tomko [Mon, 13 Dec 2021 13:06:17 +0000 (14:06 +0100)]
security: apparmor: use automatic cleanup in load_profile

Use g_auto for virCommand and char * and drop the cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agostorage: util: steal cmd in CreateQemuImgCmdFromVol
Ján Tomko [Fri, 10 Dec 2021 16:19:18 +0000 (17:19 +0100)]
storage: util: steal cmd in CreateQemuImgCmdFromVol

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agostorage: logical: use two cmd vars in GetPoolSources
Ján Tomko [Fri, 10 Dec 2021 16:17:13 +0000 (17:17 +0100)]
storage: logical: use two cmd vars in GetPoolSources

Do not mix manual and automatic freeing.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agolxc: use g_auto for virCommand in virLXCProcessEnsureRootFS
Ján Tomko [Mon, 13 Dec 2021 13:04:47 +0000 (14:04 +0100)]
lxc: use g_auto for virCommand in virLXCProcessEnsureRootFS

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agolxc: refactor virLXCProcessBuildControllerCmd
Ján Tomko [Fri, 10 Dec 2021 13:49:23 +0000 (14:49 +0100)]
lxc: refactor virLXCProcessBuildControllerCmd

Use automatic cleanup and remove the labels.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agolxc: use g_auto in lxcContainerChild
Ján Tomko [Fri, 10 Dec 2021 17:33:06 +0000 (18:33 +0100)]
lxc: use g_auto in lxcContainerChild

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: refactor virBhyveProcessBuildBhyveCmd
Ján Tomko [Fri, 10 Dec 2021 13:44:48 +0000 (14:44 +0100)]
bhyve: refactor virBhyveProcessBuildBhyveCmd

Use automatic cleanup for virCommand, steal it on success
and remove the error label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: use g_auto in virBhyveProcessStop
Ján Tomko [Fri, 10 Dec 2021 17:31:03 +0000 (18:31 +0100)]
bhyve: use g_auto in virBhyveProcessStop

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: use g_auto in virBhyveProcessStartImpl
Ján Tomko [Fri, 10 Dec 2021 17:29:18 +0000 (18:29 +0100)]
bhyve: use g_auto in virBhyveProcessStartImpl

Use g_auto and VIR_AUTOCLOSE where possible.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: refactor bhyveConnectDomainXMLToNative
Ján Tomko [Fri, 10 Dec 2021 17:26:02 +0000 (18:26 +0100)]
bhyve: refactor bhyveConnectDomainXMLToNative

Use g_auto and remove the ret variable, as well as the cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: refactor bhyveProbeCapsFromHelp
Ján Tomko [Fri, 10 Dec 2021 16:41:56 +0000 (17:41 +0100)]
bhyve: refactor bhyveProbeCapsFromHelp

Use g_auto and remove the 'ret' variable, as well as the out label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: refactor bhyveProbeCapsDeviceHelper
Ján Tomko [Fri, 10 Dec 2021 16:41:56 +0000 (17:41 +0100)]
bhyve: refactor bhyveProbeCapsDeviceHelper

Use g_auto and remove the 'ret' variable, as well as the cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agobhyve: refactor virBhyveProbeGrubCaps
Ján Tomko [Fri, 10 Dec 2021 16:39:57 +0000 (17:39 +0100)]
bhyve: refactor virBhyveProbeGrubCaps

Use g_auto and remove the 'ret' variable, as well as the cleanup label.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
3 years agoNEWS: Document TCG features
Michal Privoznik [Thu, 2 Dec 2021 08:47:39 +0000 (09:47 +0100)]
NEWS: Document TCG features

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 years agoqemu: Generate command line for tb-cache feature
Michal Privoznik [Thu, 4 Nov 2021 10:43:52 +0000 (11:43 +0100)]
qemu: Generate command line for tb-cache feature

Generating command line is pretty easy - just put tb-size=XXX
onto -accel tcg part. Note, that QEMU expects the size in MiB.

Resolves: https://gitlab.com/libvirt/libvirt/-/issues/229
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Tested-by: Kashyap Chamarthy <kchamart@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 years agoqemu: Validate TCG feature is enabled only for TCG domains
Michal Privoznik [Tue, 30 Nov 2021 12:37:54 +0000 (13:37 +0100)]
qemu: Validate TCG feature is enabled only for TCG domains

After previous commit it's possible for domains to fine tune TCG
features (well, just one - tb-cache). Check that domain has TCG
enabled, otherwise the feature makes no sense.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 years agoconf: Introduce TCG domain features
Michal Privoznik [Wed, 3 Nov 2021 12:15:41 +0000 (13:15 +0100)]
conf: Introduce TCG domain features

It may come handy to be able to tweak TCG options, in this
specific case the size of translation block cache size (tb-size).
Since we can expect more knobs to tweak let's put them under
common element, like this:

  <domain>
    <features>
      <tcg>
        <tb-cache unit='MiB'>128</tb-cache>
      </tcg>
    </features>
  </domain>

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Tested-by: Kashyap Chamarthy <kchamart@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 years agoremote_driver: Implement virStreamInData() callback
Michal Privoznik [Mon, 6 Dec 2021 16:16:09 +0000 (17:16 +0100)]
remote_driver: Implement virStreamInData() callback

When using the monolithic daemon the driver for virStream is
always virFDStreamDrv and thus calling virStreamInData() results
in calling virFDStreamInData().

But things are different with split daemon, especially when a
client connects to one of hypervisor daemons (e.g. virtqemud) and
then lets the daemon connect to the storage daemon for
vol-upload/vol-download. Here, the hypervisor daemon acts like
both client and server. This is reflected by stream->driver
pointing to remoteStreamDrv, which doesn't have streamInData
callback implemented and thus vol-upload/vol-download with sparse
flag fails.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2026537
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
3 years agorpc: Introduce virNetClientStreamInData()
Michal Privoznik [Tue, 7 Dec 2021 13:04:35 +0000 (14:04 +0100)]
rpc: Introduce virNetClientStreamInData()

The aim of this function is to look at a virNetClientStream and
tell whether the incoming packet (if there's one) contains data
(type VIR_NET_STREAM) or a hole (type VIR_NET_STREAM_HOLE) and
how big the section is. This function will be called from the
remote driver in one of future commits.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
3 years agovirStreamInData: Allow callback to not rewind the stream
Michal Privoznik [Tue, 7 Dec 2021 13:43:33 +0000 (14:43 +0100)]
virStreamInData: Allow callback to not rewind the stream

So far, virStreamInData() is effectively a wrapper over
virFDStreamInData() which means it deals with files which can be
rewound (lseek()-ed) to whatever position we need. And in fact,
that's what virFDStreamInData() does - it makes sure that the FD
is left unchanged in terms of position in the file.  Skipping the
hole happens soon after - in daemonStreamHandleRead() when
virStreamSendHole() is called.

But this is about to change. Soon we will have another implementation
where we won't be dealing with FDs but virNetMessage queue and it will
be handy to pop message at the beginning of the queue. Implement and
document this new behavior.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
3 years agoqemu: qemuBuildChardevCommand: use chrSourcePriv unconditionally
Ján Tomko [Mon, 13 Dec 2021 12:29:06 +0000 (13:29 +0100)]
qemu: qemuBuildChardevCommand: use chrSourcePriv unconditionally

In the QEMU driver, we allocate private source data unconditionally
for every chardev and the rest of the function just assumes it's there.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
3 years agoRemove empty cleanup sections
Ján Tomko [Fri, 10 Dec 2021 15:21:59 +0000 (16:21 +0100)]
Remove empty cleanup sections

After recent cleanups, there are some pointless cleanup sections.

Clean them up.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>