Activity log for bug #2054218

Date Who What changed Old value New value Message
2024-02-18 07:51:02 Matthew Ruffell bug added bug
2024-02-18 07:51:14 Matthew Ruffell nominated for series Ubuntu Mantic
2024-02-18 07:51:14 Matthew Ruffell bug task added linux (Ubuntu Mantic)
2024-02-18 07:51:20 Matthew Ruffell linux (Ubuntu Mantic): status New In Progress
2024-02-18 07:51:23 Matthew Ruffell linux (Ubuntu): status New Fix Released
2024-02-18 07:51:26 Matthew Ruffell linux (Ubuntu Mantic): importance Undecided Medium
2024-02-18 07:51:28 Matthew Ruffell linux (Ubuntu Mantic): assignee Matthew Ruffell (mruffell)
2024-02-18 07:51:42 Matthew Ruffell description BugLink: https://bugs.launchpad.net/bugs/ [Impact] Running perf against a QEMU/kvm process results in the guest suffering a page fault in trying to store Precise Event Based Sampling (PEBS) records for the host. This affects both using perf against a single process, in which it crashes the targeted guest, or using perf system wide, in which it crashes all running guests on the system. The issue was introduced in 6.0 by: commit c59a1f106f5cd4843c097069ff1bb2ad72103a67 Author: Like Xu <like.xu@linux.intel.com> Date: Mon Apr 11 18:19:36 2022 +0800 Subject: KVM: x86/pmu: Add IA32_PEBS_ENABLE MSR emulation for extended PEBS Link: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c59a1f106f5cd4843c097069ff1bb2ad72103a67 This affects all 6.2 and 6.5 kernels. There is no known workaround, apart from not using perf on affected systems. [Fix] The issue was fixed in 6.7 by: commit 971079464001c6856186ca137778e534d983174a Author: Paolo Bonzini <pbonzini@redhat.com> Date: Thu Jan 4 16:15:17 2024 +0100 Subject: KVM: x86/pmu: fix masking logic for MSR_CORE_PERF_GLOBAL_CTRL Link: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=971079464001c6856186ca137778e534d983174a This reinstates the logic for setting MSR_CORE_PERF_GLOBAL_CTRL to what it was before "KVM: x86/pmu: Add IA32_PEBS_ENABLE MSR emulation for extended PEBS". - .guest = intel_ctrl & (~cpuc->intel_ctrl_host_mask | ~pebs_mask), + .guest = intel_ctrl & ~cpuc->intel_ctrl_host_mask & ~pebs_mask, The faulty logic includes any bit that isn't both marked as exclude_guest and using PEBS, while it should really be excluding PEBS from the host. [Testcase] Start a bare metal server. Enable KVM, start a few VMs. The VMs can be idle, they don't require any workload. $ sudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils uvtool $ sudo reboot $ ssh-keygen $ uvt-simplestreams-libvirt sync --source http://cloud-images.ubuntu.com/daily release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-a release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-b release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-c release=jammy arch=amd64 $ virsh list Id Name State ------------------------- 2 jammy-a running 3 jammy-b running 4 jammy-c running $ uvt-kvm ssh jammy-a Check it works. $ ps aux | grep qemu Find the pid of jammy-a $ perf top -p $PID $ virsh console jammy-a Escape character is ^] (Ctrl + ]) [ 357.793039] BUG: unable to handle page fault for address: fffffe49178c6028 $ uvt-kvm ssh jammy-a (no response) Test packages are available in the following ppa: https://launchpad.net/~mruffell/+archive/ubuntu/sf379502-test If you install it, then running perf against the PID of qemu processes will no longer crash the guest, and they will be accessible by SSH afterward. [Where problems could occur] We are rearranging the logic of setting the PEBS MSRs, which affects processor sampling of events. This will affect any profiling tools running against KVM based virtual machines, namely perf against QEMU. If a regression were to occur, running perf against a VM could cause it to page fault and subsequently crash, resulting in downtime. The only workaround will be to disable all profiling tools until a fix is available. BugLink: https://bugs.launchpad.net/bugs/2054218 [Impact] Running perf against a QEMU/kvm process results in the guest suffering a page fault in trying to store Precise Event Based Sampling (PEBS) records for the host. This affects both using perf against a single process, in which it crashes the targeted guest, or using perf system wide, in which it crashes all running guests on the system. The issue was introduced in 6.0 by: commit c59a1f106f5cd4843c097069ff1bb2ad72103a67 Author: Like Xu <like.xu@linux.intel.com> Date: Mon Apr 11 18:19:36 2022 +0800 Subject: KVM: x86/pmu: Add IA32_PEBS_ENABLE MSR emulation for extended PEBS Link: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=c59a1f106f5cd4843c097069ff1bb2ad72103a67 This affects all 6.2 and 6.5 kernels. There is no known workaround, apart from not using perf on affected systems. [Fix] The issue was fixed in 6.7 by: commit 971079464001c6856186ca137778e534d983174a Author: Paolo Bonzini <pbonzini@redhat.com> Date: Thu Jan 4 16:15:17 2024 +0100 Subject: KVM: x86/pmu: fix masking logic for MSR_CORE_PERF_GLOBAL_CTRL Link: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=971079464001c6856186ca137778e534d983174a This reinstates the logic for setting MSR_CORE_PERF_GLOBAL_CTRL to what it was before "KVM: x86/pmu: Add IA32_PEBS_ENABLE MSR emulation for extended PEBS". - .guest = intel_ctrl & (~cpuc->intel_ctrl_host_mask | ~pebs_mask), + .guest = intel_ctrl & ~cpuc->intel_ctrl_host_mask & ~pebs_mask, The faulty logic includes any bit that isn't both marked as exclude_guest and using PEBS, while it should really be excluding PEBS from the host. [Testcase] Start a bare metal server. Enable KVM, start a few VMs. The VMs can be idle, they don't require any workload. $ sudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils uvtool $ sudo reboot $ ssh-keygen $ uvt-simplestreams-libvirt sync --source http://cloud-images.ubuntu.com/daily release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-a release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-b release=jammy arch=amd64 $ uvt-kvm create --cpu 4 --memory 4096 --disk 10 jammy-c release=jammy arch=amd64 $ virsh list  Id Name State -------------------------  2 jammy-a running  3 jammy-b running  4 jammy-c running $ uvt-kvm ssh jammy-a Check it works. $ ps aux | grep qemu Find the pid of jammy-a $ perf top -p $PID $ virsh console jammy-a Escape character is ^] (Ctrl + ]) [ 357.793039] BUG: unable to handle page fault for address: fffffe49178c6028 $ uvt-kvm ssh jammy-a (no response) Test packages are available in the following ppa: https://launchpad.net/~mruffell/+archive/ubuntu/sf379502-test If you install it, then running perf against the PID of qemu processes will no longer crash the guest, and they will be accessible by SSH afterward. [Where problems could occur] We are rearranging the logic of setting the PEBS MSRs, which affects processor sampling of events. This will affect any profiling tools running against KVM based virtual machines, namely perf against QEMU. If a regression were to occur, running perf against a VM could cause it to page fault and subsequently crash, resulting in downtime. The only workaround will be to disable all profiling tools until a fix is available.
2024-02-18 07:52:08 Matthew Ruffell tags mantic sts
2024-02-29 16:34:56 Stefan Bader linux (Ubuntu Mantic): status In Progress Fix Committed
2024-02-29 18:32:56 Jay Vosburgh bug added subscriber Jay Vosburgh
2024-03-11 17:50:41 Ubuntu Kernel Bot tags mantic sts kernel-spammed-mantic-linux-v2 mantic sts verification-needed-mantic-linux
2024-03-13 11:10:42 Pavel Mracek bug added subscriber Pavel Mracek
2024-03-20 03:42:31 Matthew Ruffell tags kernel-spammed-mantic-linux-v2 mantic sts verification-needed-mantic-linux kernel-spammed-mantic-linux-v2 mantic sts verification-done-mantic-linux
2024-04-08 03:50:10 Launchpad Janitor linux (Ubuntu Mantic): status Fix Committed Fix Released
2024-04-08 03:50:10 Launchpad Janitor cve linked 2023-46838
2024-04-08 03:50:10 Launchpad Janitor cve linked 2023-50431
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-1085
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-1086
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-22705
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-23850
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-23851
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-26597
2024-04-08 03:50:10 Launchpad Janitor cve linked 2024-26599
2024-04-08 04:02:50 Ubuntu Kernel Bot tags kernel-spammed-mantic-linux-v2 mantic sts verification-done-mantic-linux kernel-spammed-mantic-linux-raspi-v2 kernel-spammed-mantic-linux-v2 mantic sts verification-done-mantic-linux verification-needed-mantic-linux-raspi