All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: x86: Do not create mmu_rmaps_stat for TDP MMU
@ 2022-01-04  9:28 Nikunj A Dadhania
  2022-01-04  9:49 ` Peter Xu
  0 siblings, 1 reply; 3+ messages in thread
From: Nikunj A Dadhania @ 2022-01-04  9:28 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: Sean Christopherson, Vitaly Kuznetsov, Peter Xu, kvm,
	linux-kernel, nikunj, vasant.hegde, brijesh.singh

With TDP MMU being the default now, access to mmu_rmaps_stat debugfs
file causes following oops:

BUG: kernel NULL pointer dereference, address: 0000000000000000
PGD 0 P4D 0
Oops: 0000 [#1] PREEMPT SMP NOPTI
CPU: 7 PID: 3185 Comm: cat Not tainted 5.16.0-rc4+ #204
RIP: 0010:pte_list_count+0x6/0x40
 Call Trace:
  <TASK>
  ? kvm_mmu_rmaps_stat_show+0x15e/0x320
  seq_read_iter+0x126/0x4b0
  ? aa_file_perm+0x124/0x490
  seq_read+0xf5/0x140
  full_proxy_read+0x5c/0x80
  vfs_read+0x9f/0x1a0
  ksys_read+0x67/0xe0
  __x64_sys_read+0x19/0x20
  do_syscall_64+0x3b/0xc0
  entry_SYSCALL_64_after_hwframe+0x44/0xae
 RIP: 0033:0x7fca6fc13912

Create mmu_rmaps_stat debugfs file only when rmaps are created.

Reported-by: Vasant Hegde <vasant.hegde@amd.com>
Tested-by: Vasant Hegde <vasant.hegde@amd.com>
Signed-off-by: Nikunj A Dadhania <nikunj@amd.com>
---
 arch/x86/kvm/debugfs.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kvm/debugfs.c b/arch/x86/kvm/debugfs.c
index 543a8c04025c..78bb09a3a7b7 100644
--- a/arch/x86/kvm/debugfs.c
+++ b/arch/x86/kvm/debugfs.c
@@ -180,7 +180,8 @@ static const struct file_operations mmu_rmaps_stat_fops = {
 
 int kvm_arch_create_vm_debugfs(struct kvm *kvm)
 {
-	debugfs_create_file("mmu_rmaps_stat", 0644, kvm->debugfs_dentry, kvm,
-			    &mmu_rmaps_stat_fops);
+	if (kvm_memslots_have_rmaps(kvm))
+		debugfs_create_file("mmu_rmaps_stat", 0644, kvm->debugfs_dentry, kvm,
+				    &mmu_rmaps_stat_fops);
 	return 0;
 }
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] KVM: x86: Do not create mmu_rmaps_stat for TDP MMU
  2022-01-04  9:28 [PATCH] KVM: x86: Do not create mmu_rmaps_stat for TDP MMU Nikunj A Dadhania
@ 2022-01-04  9:49 ` Peter Xu
  2022-01-04 10:38   ` Nikunj A. Dadhania
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Xu @ 2022-01-04  9:49 UTC (permalink / raw)
  To: Nikunj A Dadhania
  Cc: Paolo Bonzini, Sean Christopherson, Vitaly Kuznetsov, kvm,
	linux-kernel, vasant.hegde, brijesh.singh

Hi, Nikunj,

On Tue, Jan 04, 2022 at 02:58:14PM +0530, Nikunj A Dadhania wrote:
> With TDP MMU being the default now, access to mmu_rmaps_stat debugfs
> file causes following oops:
> 
> BUG: kernel NULL pointer dereference, address: 0000000000000000
> PGD 0 P4D 0
> Oops: 0000 [#1] PREEMPT SMP NOPTI
> CPU: 7 PID: 3185 Comm: cat Not tainted 5.16.0-rc4+ #204
> RIP: 0010:pte_list_count+0x6/0x40
>  Call Trace:
>   <TASK>
>   ? kvm_mmu_rmaps_stat_show+0x15e/0x320
>   seq_read_iter+0x126/0x4b0
>   ? aa_file_perm+0x124/0x490
>   seq_read+0xf5/0x140
>   full_proxy_read+0x5c/0x80
>   vfs_read+0x9f/0x1a0
>   ksys_read+0x67/0xe0
>   __x64_sys_read+0x19/0x20
>   do_syscall_64+0x3b/0xc0
>   entry_SYSCALL_64_after_hwframe+0x44/0xae
>  RIP: 0033:0x7fca6fc13912
> 
> Create mmu_rmaps_stat debugfs file only when rmaps are created.
> 
> Reported-by: Vasant Hegde <vasant.hegde@amd.com>
> Tested-by: Vasant Hegde <vasant.hegde@amd.com>
> Signed-off-by: Nikunj A Dadhania <nikunj@amd.com>

Shall we put the check into kvm_mmu_rmaps_stat_show()?  As iiuc the rmap can be
allocated dynamically (shadow_root_allocated changing from 0->1).

Thanks,

-- 
Peter Xu


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] KVM: x86: Do not create mmu_rmaps_stat for TDP MMU
  2022-01-04  9:49 ` Peter Xu
@ 2022-01-04 10:38   ` Nikunj A. Dadhania
  0 siblings, 0 replies; 3+ messages in thread
From: Nikunj A. Dadhania @ 2022-01-04 10:38 UTC (permalink / raw)
  To: Peter Xu
  Cc: Paolo Bonzini, Sean Christopherson, Vitaly Kuznetsov, kvm,
	linux-kernel, vasant.hegde, brijesh.singh

Hi Peter,

On 1/4/2022 3:19 PM, Peter Xu wrote:
> Hi, Nikunj,
> 
> On Tue, Jan 04, 2022 at 02:58:14PM +0530, Nikunj A Dadhania wrote:
>> With TDP MMU being the default now, access to mmu_rmaps_stat debugfs
>> file causes following oops:
>>
>> BUG: kernel NULL pointer dereference, address: 0000000000000000
>> PGD 0 P4D 0
>> Oops: 0000 [#1] PREEMPT SMP NOPTI
>> CPU: 7 PID: 3185 Comm: cat Not tainted 5.16.0-rc4+ #204
>> RIP: 0010:pte_list_count+0x6/0x40
>>  Call Trace:
>>   <TASK>
>>   ? kvm_mmu_rmaps_stat_show+0x15e/0x320
>>   seq_read_iter+0x126/0x4b0
>>   ? aa_file_perm+0x124/0x490
>>   seq_read+0xf5/0x140
>>   full_proxy_read+0x5c/0x80
>>   vfs_read+0x9f/0x1a0
>>   ksys_read+0x67/0xe0
>>   __x64_sys_read+0x19/0x20
>>   do_syscall_64+0x3b/0xc0
>>   entry_SYSCALL_64_after_hwframe+0x44/0xae
>>  RIP: 0033:0x7fca6fc13912
>>
>> Create mmu_rmaps_stat debugfs file only when rmaps are created.
>>
>> Reported-by: Vasant Hegde <vasant.hegde@amd.com>
>> Tested-by: Vasant Hegde <vasant.hegde@amd.com>
>> Signed-off-by: Nikunj A Dadhania <nikunj@amd.com>
> 
> Shall we put the check into kvm_mmu_rmaps_stat_show()?  As iiuc the rmap can be
> allocated dynamically (shadow_root_allocated changing from 0->1).

Yes, that will cover the above case. And mmu_rmaps_stat file will be empty 
in case when rmaps are not allocated.

Regards
Nikunj

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-04 10:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04  9:28 [PATCH] KVM: x86: Do not create mmu_rmaps_stat for TDP MMU Nikunj A Dadhania
2022-01-04  9:49 ` Peter Xu
2022-01-04 10:38   ` Nikunj A. Dadhania

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.