lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 10 Jun 2011 12:05:23 +0800
From:	Xiao Guangrong <xiaoguangrong@...fujitsu.com>
To:	Avi Kivity <avi@...hat.com>
CC:	Marcelo Tosatti <mtosatti@...hat.com>,
	LKML <linux-kernel@...r.kernel.org>, KVM <kvm@...r.kernel.org>
Subject: Re: [PATCH 0/15] KVM: optimize for MMIO handled

On 06/09/2011 03:39 PM, Avi Kivity wrote:

> First, I think we should consider dropping bypass_guest_pf completely, just so we have less things to think about.
> 

I agree.

> I'm also not sure RCU is enough protection - we can unlink a page in the middle of a hierarchy,

I think it is ok, it just likes the page structure cache of real CPU, we can use
the old mapping or new mapping here, if we missed, page fault path is called, it can 
fix the problem for us.

> and on i386 this causes an invalid pointer to appear when we fetch the two halves.  But I guess, if the cpu can do it, so can we.
> 

Ah, maybe the cpu can not do it, we need a light way to get spte for i386 host...

> Maybe we can do something like
> 
> again:
>   fetch pointer to last level spte using RCU
>   if failed:
>        take lock
>        build spte hierarchy
>        drop lock
>        goto again
>   if sync:
>       if mmio:
>           do mmio
>           return
>       return
>   walk guest table
>   install spte
>   if mmio:
>      do mmio
> 
> (sync is always false for tdp)
> 

It seams it is more complex, the origin way is:

fetch last level spte
if failed or it is not a mmio spte:
	call page fault
do mmio

and it has little heavy sine we need to walk guest page table,
and build spte under mmu-lock.

Maybe i missed your meaning, could you please tell me the advantage? :-(

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ