* [Bug 204177] New: PT: Missing filtering on the MSRs
@ 2019-07-14 16:08 bugzilla-daemon
2026-01-10 19:22 ` [Bug 204177] ProcessorTrace: missing " bugzilla-daemon
0 siblings, 1 reply; 2+ messages in thread
From: bugzilla-daemon @ 2019-07-14 16:08 UTC (permalink / raw)
To: kvm
https://bugzilla.kernel.org/show_bug.cgi?id=204177
Bug ID: 204177
Summary: PT: Missing filtering on the MSRs
Product: Virtualization
Version: unspecified
Kernel Version: 5.*
Hardware: Intel
OS: Linux
Tree: Mainline
Status: NEW
Severity: normal
Priority: P1
Component: kvm
Assignee: virtualization_kvm@kernel-bugs.osdl.org
Reporter: max@m00nbsd.net
Regression: No
In vmx.c::vmx_get_msr(), there is some missing filtering on the PT (RTIT) MSRs.
For example RTIT_CR3_MATCH:
case MSR_IA32_RTIT_CR3_MATCH:
if ((pt_mode != PT_MODE_HOST_GUEST) ||
(vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) ||
!intel_pt_validate_cap(vmx->pt_desc.caps,
PT_CAP_cr3_filtering))
return 1;
vmx->pt_desc.guest.cr3_match = data;
break;
Here, 'cr3_match' is set to the value given by the guest. Later, in
pt_load_msr(), there is a blunt WRMSR:
wrmsrl(MSR_IA32_RTIT_CR3_MATCH, ctx->cr3_match);
The Intel SDM indicates that
"IA32_RTIT_CR3_MATCH[4:0] are reserved and must be 0; an attempt to
set those bits using WRMSR causes a #GP."
Given that KVM does not ensure that the aforementioned bits are zero, it seems
that the guest could #GP the host.
--
You are receiving this mail because:
You are watching the assignee of the bug.
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Bug 204177] ProcessorTrace: missing filtering on the MSRs
2019-07-14 16:08 [Bug 204177] New: PT: Missing filtering on the MSRs bugzilla-daemon
@ 2026-01-10 19:22 ` bugzilla-daemon
0 siblings, 0 replies; 2+ messages in thread
From: bugzilla-daemon @ 2026-01-10 19:22 UTC (permalink / raw)
To: kvm
https://bugzilla.kernel.org/show_bug.cgi?id=204177
Maxime Villard (max@m00nbsd.net) changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|PT: Missing filtering on |ProcessorTrace: missing
|the MSRs |filtering on the MSRs
--
You may reply to this email to add a comment.
You are receiving this mail because:
You are watching the assignee of the bug.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-10 19:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-14 16:08 [Bug 204177] New: PT: Missing filtering on the MSRs bugzilla-daemon
2026-01-10 19:22 ` [Bug 204177] ProcessorTrace: missing " bugzilla-daemon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox