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 1953389 - libvirt qemu capabilities cache not invalidated after TSX enable/disable.
Summary: libvirt qemu capabilities cache not invalidated after TSX enable/disable.
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 8
Classification: Red Hat
Component: libvirt
Version: 8.0
Hardware: x86_64
OS: Linux
high
high
Target Milestone: pre-dev-freeze
: ---
Assignee: Tim Wiederhake
QA Contact: Luyao Huang
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2021-04-26 00:33 UTC by Germano Veit Michel
Modified: 2022-05-17 01:23 UTC (History)
9 users (show)

Fixed In Version: libvirt-7.10.0-1.module+el8.6.0+13502+4f24a11d
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2022-05-10 13:18:42 UTC
Type: Bug
Target Upstream Version: 7.10.0
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Knowledge Base (Solution) 5659891 0 None None None 2021-09-08 02:36:00 UTC
Red Hat Product Errata RHSA-2022:1759 0 None None None 2022-05-10 13:19:52 UTC

Description Germano Veit Michel 2021-04-26 00:33:03 UTC
Description of problem:

virsh domcapabilities does not change after reboot when enabling/disabling tsx on the kernel command line, is re-using cache from previous tsx state.

Version-Release number of selected component (if applicable):
libvirt-daemon-6.6.0-13.2.module+el8.3.1+10483+85317cf0.x86_64
qemu-kvm-5.1.0-21.module+el8.3.1+10464+8ad18d1a.x86_64
kernel-4.18.0-240.22.1.el8_3.x86_64

How reproducible:
Always

Steps to Reproduce:
1. Install 8.3.1 AV

2. Check if TSX is disabled 
   $ cat /sys/devices/system/cpu/vulnerabilities/tsx_async_abort
   Mitigation: TSX disabled

3. virsh domcapabilities, note down if rtm/hle is disabled
      <feature policy='disable' name='hle'/>
      <feature policy='disable' name='rtm'/>
4. Enable tsx and reboot
   $ grubby --update-kernel=ALL --args="tsx=on"

5. virsh domcapabilities, still disabled
      <feature policy='disable' name='hle'/>
      <feature policy='disable' name='rtm'/>

6. Delete cache and restart libvirtd
   $ rm /var/cache/libvirt/qemu/capabilities/*.xml
   $ systemctl restart libvirtd

7. virsh domcapabilities now shows TSX
      <feature policy='require' name='hle'/>
      <feature policy='require' name='rtm'/>

NOTE: the bug works both ways, from enable to disable and from disable to enable.

Actual results:
- domcapabilities reporting outdated info

Expected results:
- domcapabilities to report current info

Comment 4 John Ferlan 2021-09-08 13:19:35 UTC
Bulk update - Move RHEL-AV bugs to RHEL

Comment 9 Luyao Huang 2021-12-07 09:20:08 UTC
Verify this bug with libvirt-daemon-7.10.0-1.module+el8.6.0+13502+4f24a11d.x86_64:

1. prepare a Cascadelake system

2. Check if TSX is disabled
# cat /sys/devices/system/cpu/vulnerabilities/tsx_async_abort
Mitigation: TSX disabled

3. virsh domcapabilities output, hle and rtm have been disabled
# virsh domcapabilities
    <mode name='host-model' supported='yes'>
      <model fallback='forbid'>Cascadelake-Server</model>
      <vendor>Intel</vendor>
      <feature policy='require' name='ss'/>
      <feature policy='require' name='vmx'/>
      <feature policy='require' name='pdcm'/>
      <feature policy='require' name='hypervisor'/>
      <feature policy='require' name='tsc_adjust'/>
      <feature policy='require' name='umip'/>
      <feature policy='require' name='pku'/>
      <feature policy='require' name='md-clear'/>
      <feature policy='require' name='stibp'/>
      <feature policy='require' name='arch-capabilities'/>
      <feature policy='require' name='xsaves'/>
      <feature policy='require' name='ibpb'/>
      <feature policy='require' name='ibrs'/>
      <feature policy='require' name='amd-stibp'/>
      <feature policy='require' name='amd-ssbd'/>
      <feature policy='require' name='rdctl-no'/>
      <feature policy='require' name='ibrs-all'/>
      <feature policy='require' name='skip-l1dfl-vmentry'/>
      <feature policy='require' name='mds-no'/>
      <feature policy='require' name='pschange-mc-no'/>
      <feature policy='require' name='tsx-ctrl'/>
      <feature policy='disable' name='hle'/>
      <feature policy='disable' name='rtm'/>
    </mode>

4. add tsx=on in kernel commandline and reboot

# cat /boot/grub2/grubenv 
... console=ttyS0,115200 tsx=on

# reboot

5. recheck virsh domcapabilities output, hle and rtm have been enabled(notice that hle and rtm is part of Cascadelake-Server model's features)
# virsh domcapabilities
    <mode name='host-model' supported='yes'>
      <model fallback='forbid'>Cascadelake-Server</model>
      <vendor>Intel</vendor>
      <feature policy='require' name='ss'/>
      <feature policy='require' name='vmx'/>
      <feature policy='require' name='pdcm'/>
      <feature policy='require' name='hypervisor'/>
      <feature policy='require' name='tsc_adjust'/>
      <feature policy='require' name='umip'/>
      <feature policy='require' name='pku'/>
      <feature policy='require' name='md-clear'/>
      <feature policy='require' name='stibp'/>
      <feature policy='require' name='arch-capabilities'/>
      <feature policy='require' name='xsaves'/>
      <feature policy='require' name='ibpb'/>
      <feature policy='require' name='ibrs'/>
      <feature policy='require' name='amd-stibp'/>
      <feature policy='require' name='amd-ssbd'/>
      <feature policy='require' name='rdctl-no'/>
      <feature policy='require' name='ibrs-all'/>
      <feature policy='require' name='skip-l1dfl-vmentry'/>
      <feature policy='require' name='mds-no'/>
      <feature policy='require' name='pschange-mc-no'/>
      <feature policy='require' name='tsx-ctrl'/>
    </mode>

6. check libvirtd debug log and can find debug log like this:
2021-12-07 09:09:27.842+0000: 953: debug : virQEMUCapsIsValid:4950 : Outdated capabilities for '/usr/libexec/qemu-kvm': host cpuid changed

Comment 11 errata-xmlrpc 2022-05-10 13:18:42 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 (Moderate: virt:rhel and virt-devel:rhel security, bug fix, and enhancement update), 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-2022:1759


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