RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1559284 - rpm verify show mode differs for package libvirt-daemon-config-nwfilter
Summary: rpm verify show mode differs for package libvirt-daemon-config-nwfilter
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: libvirt
Version: 7.5
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: rc
: ---
Assignee: Jiri Denemark
QA Contact: chhu
URL:
Whiteboard:
: 1571969 (view as bug list)
Depends On:
Blocks: 1436519
TreeView+ depends on / blocked
 
Reported: 2018-03-22 08:01 UTC by yalzhang@redhat.com
Modified: 2018-10-30 09:55 UTC (History)
4 users (show)

Fixed In Version: libvirt-4.4.0-1.el7
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2018-10-30 09:53:14 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2018:3113 0 None None None 2018-10-30 09:55:20 UTC

Description yalzhang@redhat.com 2018-03-22 08:01:25 UTC
Description of problem:
rpm verify show mode differs for package libvirt-daemon-config-nwfilter

Version-Release number of selected component (if applicable):
libvirt-3.9.0-14.el7_5.2.x86_64

How reproducible:
100%

Steps to Reproduce:
1. install the libvirt-daemon-config-nwfilter package, then do rpm verify, all xml files will show mode differs

# rpm -V libvirt-daemon-config-nwfilter-3.9.0-14.el7_5.2.x86_64
.M.......  g /etc/libvirt/nwfilter/allow-arp.xml
.M.......  g /etc/libvirt/nwfilter/allow-dhcp-server.xml
.M.......  g /etc/libvirt/nwfilter/allow-dhcp.xml
.M.......  g /etc/libvirt/nwfilter/allow-incoming-ipv4.xml
.M.......  g /etc/libvirt/nwfilter/allow-ipv4.xml
....
.M.......  g /etc/libvirt/nwfilter/qemu-announce-self.xml

# ll -Z /etc/libvirt/nwfilter/allow-arp.xml
-rw-------. root root system_u:object_r:virt_etc_rw_t:s0 /etc/libvirt/nwfilter/allow-arp.xml

# rpm -q rpm
Rpm-4.11.3-32.el7.x86_64

2. Downgrade the rpm package to below, the verify passed
# rpm -q rpm
rpm-4.11.3-25.el7.x86_64

# rpm -V libvirt-daemon-config-nwfilter-3.9.0-14.virtcov.el7_5.2.x86_64
===> no output

3. check the original permission settings in the packages:
# rpm2cpio libvirt-daemon-config-nwfilter-3.9.0-14.el7_5.2.x86_64.rpm | cpio -idmv

# ll -Z ./usr/share/libvirt/nwfilter/allow-arp.xml
-rw-r--r--. root root unconfined_u:object_r:user_tmp_t:s0 ./usr/share/libvirt/nwfilter/allow-arp.xml


Actual results:
rpm verify fail

Expected results:
The rpm verify should be pass

Additional info:

Comment 2 yalzhang@redhat.com 2018-04-26 03:23:15 UTC
*** Bug 1571969 has been marked as a duplicate of this bug. ***

Comment 3 yalzhang@redhat.com 2018-04-26 03:31:27 UTC
Add regression keywords as the bug is reported by up-layer recently also.

Comment 5 Jiri Denemark 2018-05-29 18:00:11 UTC
The files in /etc are defined as %ghost in the spec file, which means rpm will
not install them, but it will record its existence and permissions in the
database. The files are then copied in a %post scriptlet, but apparently the
permissions of those files are different from the one recorded by rpm. So
either the change happened while they were copied in %post scriptlet, or
libvirtd changed the permissions. And it looks like older rpm didn't care
about permissions of %ghost files.

Comment 6 Jiri Denemark 2018-05-29 21:12:45 UTC
Fix sent upstream for review: https://www.redhat.com/archives/libvir-list/2018-May/msg02147.html

Comment 7 Jiri Denemark 2018-05-30 09:23:23 UTC
Fixed upstream by

commit 7f8e1cb68fd6963542a7089199efb4e65f9a4c23
Refs: v4.4.0-rc1-1-g7f8e1cb68f
Author:     Jiri Denemark <jdenemar>
AuthorDate: Tue May 29 22:30:33 2018 +0200
Commit:     Jiri Denemark <jdenemar>
CommitDate: Wed May 30 11:21:28 2018 +0200

    spec: Fix permissions of nwfilter XMLs

    The nwfilter XMLs in /etc are defined as %ghost in the spec file, which
    means rpm will not install them, but it will record its existence and
    permissions in the database. During installation the files are copied in
    a %post scriptlet from /usr/share/libvirt/nwfilter, but once libvirtd is
    restarted, it will rewrite the files to add generated UUIDs.

    While RPM recorded 644 mode for the XMLs, libvirt saves them with 600
    and thus any future attempt to verify the libvirt-daemon-config-nwfilter
    package would fail. We need to tell RPM the ghost files are supposed to
    have 600 permissions.

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

    Signed-off-by: Jiri Denemark <jdenemar>
    Reviewed-by: Erik Skultety <eskultet>

Comment 9 chhu 2018-09-13 06:37:06 UTC
Hi, Jiri


I hit this issue after installing libvirt-daemon-config-nwfilter package, but the rpm verify passed when I started the libvirtd service. More details are as below, do you want to do more modification?  Thank you!


Regards,
chhu


Tested with packages:
libvirt-daemon-config-nwfilter-4.5.0-9.el7.x86_64
rpm-4.11.3-35.el7.x86_64

Test steps:
1. Install the libvirt-daemon-config-nwfilter package, then do rpm verify, all xml files will show mode differs
# rpm -V libvirt-daemon-config-nwfilter-4.5.0-9.el7.x86_64
.M.......  g /etc/libvirt/nwfilter/allow-arp.xml
.M.......  g /etc/libvirt/nwfilter/allow-dhcp-server.xml
.M.......  g /etc/libvirt/nwfilter/allow-dhcp.xml
.M.......  g /etc/libvirt/nwfilter/allow-incoming-ipv4.xml
.M.......  g /etc/libvirt/nwfilter/allow-ipv4.xml
.M.......  g /etc/libvirt/nwfilter/clean-traffic-gateway.xml
.M.......  g /etc/libvirt/nwfilter/clean-traffic.xml
.M.......  g /etc/libvirt/nwfilter/no-arp-ip-spoofing.xml
.M.......  g /etc/libvirt/nwfilter/no-arp-mac-spoofing.xml
.M.......  g /etc/libvirt/nwfilter/no-arp-spoofing.xml
.M.......  g /etc/libvirt/nwfilter/no-ip-multicast.xml
.M.......  g /etc/libvirt/nwfilter/no-ip-spoofing.xml
.M.......  g /etc/libvirt/nwfilter/no-mac-broadcast.xml
.M.......  g /etc/libvirt/nwfilter/no-mac-spoofing.xml
.M.......  g /etc/libvirt/nwfilter/no-other-l2-traffic.xml
.M.......  g /etc/libvirt/nwfilter/no-other-rarp-traffic.xml
.M.......  g /etc/libvirt/nwfilter/qemu-announce-self-rarp.xml
.M.......  g /etc/libvirt/nwfilter/qemu-announce-self.xml

# ll -Z /etc/libvirt/nwfilter/allow-arp.xml
-rw-r--r--. root root unconfined_u:object_r:virt_etc_rw_t:s0 /etc/libvirt/nwfilter/allow-arp.xml

# rpm -qa|grep rpm
rpm-4.11.3-35.el7.x86_64

2. Check the libvirtd status, it's stopped, start the libvirtd, then do rpm verify passed.

# service libvirtd status
Redirecting to /bin/systemctl status libvirtd.service
● libvirtd.service - Virtualization daemon
   Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:libvirtd(8)
           https://libvirt.org
# service libvirtd start
Redirecting to /bin/systemctl start libvirtd.service

# rpm -V libvirt-daemon-config-nwfilter-4.5.0-9.el7.x86_64
# ll -Z /etc/libvirt/nwfilter/allow-arp.xml
-rw-------. root root system_u:object_r:virt_etc_rw_t:s0 /etc/libvirt/nwfilter/allow-arp.xml

Comment 10 Jiri Denemark 2018-09-13 07:35:00 UTC
Maybe, once I understand what's going on here. But anyway, it won't be for
this bug. It's good it works in the usual case when libvirtd is running. If
you file a new bug for the corner case you found, I'll try to look at it.

Comment 11 chhu 2018-09-13 08:05:20 UTC
Thanks Jiri!

File a new bug for the issue in comment9, and set this bug status to "VERIFIED". 
Bug 1628475 - Rpm verify show mode differs for package libvirt-daemon-config-nwfilter when libvirtd is stopped

Comment 12 Ryan Barry 2018-09-13 18:09:15 UTC
Just a remark on comment#9 -

For security scanning (SCAP, for example), it is NOT sufficient to have verification pass only if the service is started. Since security is a priority target, failing verification after install is (to me), FailedQA rather than a corner case.

Comment 13 chhu 2018-09-14 05:26:03 UTC
Hi, Ryan

Yes, thank you very much!

I filed bug1622875 to track this:  
Bug 1628475 - Rpm verify show mode differs for package libvirt-daemon-config-nwfilter when libvirtd is stopped


Regards,
chhu

Comment 14 Jiri Denemark 2018-09-14 06:27:51 UTC
The fix which went in for this BZ is still a verified improvement compared to
the previous state. Although we need an additional patch to fix this in all
cases. To me it doesn't really matter whether we have a new bug tracking the
addition or use this one. Usually a separate bug is more focused and it's
easier to spot what the problem is without reading all the comments.

Comment 15 chhu 2018-09-14 07:15:01 UTC
Hi, Jiri

Yes, thank you! 

This bug fix the problem when the libvirtd is started, we use Bug 1628475 to track the issue without starting libvirtd. 

Regards,
chhu

Comment 17 errata-xmlrpc 2018-10-30 09:53:14 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:3113


Note You need to log in before you can comment on or make changes to this bug.