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:	Mon, 21 May 2012 10:35:58 +0000
From:	"Hao, Xudong" <xudong.hao@...el.com>
To:	Avi Kivity <avi@...hat.com>
CC:	Marcelo Tosatti <mtosatti@...hat.com>,
	Xudong Hao <xudong.hao@...ux.intel.com>,
	"kvm@...r.kernel.org" <kvm@...r.kernel.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	"Shan, Haitao" <haitao.shan@...el.com>,
	"Zhang, Xiantao" <xiantao.zhang@...el.com>
Subject: RE: [PATCH 4/4] Enabling Access bit when doing memory swapping

> -----Original Message-----
> From: Avi Kivity [mailto:avi@...hat.com]
> Sent: Monday, May 21, 2012 4:32 PM
> To: Hao, Xudong
> Cc: Marcelo Tosatti; Xudong Hao; kvm@...r.kernel.org;
> linux-kernel@...r.kernel.org; Shan, Haitao; Zhang, Xiantao
> Subject: Re: [PATCH 4/4] Enabling Access bit when doing memory swapping
> 
> On 05/21/2012 06:22 AM, Hao, Xudong wrote:
> > > -----Original Message-----
> > > From: Marcelo Tosatti [mailto:mtosatti@...hat.com]
> > > Sent: Friday, May 18, 2012 10:23 AM
> > > To: Xudong Hao
> > > Cc: avi@...hat.com; kvm@...r.kernel.org; linux-kernel@...r.kernel.org;
> > > Shan, Haitao; Zhang, Xiantao; Hao, Xudong
> > > Subject: Re: [PATCH 4/4] Enabling Access bit when doing memory swapping
> > >
> > > On Wed, May 16, 2012 at 09:12:30AM +0800, Xudong Hao wrote:
> > > > Enabling Access bit when doing memory swapping.
> > > >
> > > > Signed-off-by: Haitao Shan <haitao.shan@...el.com>
> > > > Signed-off-by: Xudong Hao <xudong.hao@...el.com>
> > > > ---
> > > >  arch/x86/kvm/mmu.c |   13 +++++++------
> > > >  arch/x86/kvm/vmx.c |    6 ++++--
> > > >  2 files changed, 11 insertions(+), 8 deletions(-)
> > > >
> > > > diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
> > > > index ff053ca..5f55f98 100644
> > > > --- a/arch/x86/kvm/mmu.c
> > > > +++ b/arch/x86/kvm/mmu.c
> > > > @@ -1166,7 +1166,8 @@ static int kvm_age_rmapp(struct kvm *kvm,
> > > unsigned long *rmapp,
> > > >     int young = 0;
> > > >
> > > >     /*
> > > > -    * Emulate the accessed bit for EPT, by checking if this page has
> > > > +    * In case of absence of EPT Access and Dirty Bits supports,
> > > > +    * emulate the accessed bit for EPT, by checking if this page has
> > > >      * an EPT mapping, and clearing it if it does. On the next access,
> > > >      * a new EPT mapping will be established.
> > > >      * This has some overhead, but not as much as the cost of swapping
> > > > @@ -1179,11 +1180,11 @@ static int kvm_age_rmapp(struct kvm *kvm,
> > > unsigned long *rmapp,
> > > >     while (spte) {
> > > >         int _young;
> > > >         u64 _spte = *spte;
> > > > -       BUG_ON(!(_spte & PT_PRESENT_MASK));
> > > > -       _young = _spte & PT_ACCESSED_MASK;
> > > > +       BUG_ON(!is_shadow_present_pte(_spte));
> > > > +       _young = _spte & shadow_accessed_mask;
> > > >         if (_young) {
> > > >             young = 1;
> > > > -           clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
> > > > +           *spte &= ~shadow_accessed_mask;
> > > >         }
> > >
> > > Now a dirty bit can be lost. Is there a reason to remove the clear_bit?
> >
> > The clear_bit() is called in shadown and EPT A/D mode, because
> PT_ACCESSED_SHIFT does not make sense for EPT A/D bit, so use the code
> shadow_accessed_mask to mask the bit for both of them.
> 
> That doesn't answer the question.  An atomic operation is now non-atomic.
> 
> You can calculate shadow_accessed_bit and keep on using clear_bit(), or
> switch to cmpxchg64(), but don't just drop the dirty bit here.
> 

I know your meaning. How about this changes:

...
            young = 1;
+            if (enable_ept_ad_bits)
+                clear_bit(ffs(shadow_accessed_mask), (unsigned long *)spte);
            clear_bit(PT_ACCESSED_SHIFT, (unsigned long *)spte);
...

> --
> error compiling committee.c: too many arguments to function

--
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