All of lore.kernel.org
 help / color / mirror / Atom feed
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: xen-devel@lists.xenproject.org,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>,
	xen-devel@lists.xen.org, Ian Campbell <Ian.Campbell@citrix.com>,
	David Vrabel <david.vrabel@citrix.com>
Subject: Re: [PATCH] xen: privcmd: do not return pages which we have failed to unmap
Date: Fri, 6 Dec 2013 15:08:36 -0500	[thread overview]
Message-ID: <20131206200836.GB10345@pegasus.dumpdata.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1312061753370.7093@kaball.uk.xensource.com>

On Fri, Dec 06, 2013 at 05:58:25PM +0000, Stefano Stabellini wrote:
> On Wed, 4 Dec 2013, Ian Campbell wrote:
> > >From 900f1e903bacf376800b078aef03e8d5ff524562 Mon Sep 17 00:00:00 2001
> > From: Ian Campbell <ian.campbell@citrix.com>
> > Date: Wed, 4 Dec 2013 14:19:52 +0000
> > Subject: [PATCH] xen: privcmd: do not return pages which we have failed to
> >  unmap
> > 
> > This failure represents a hypervisor issue, but if it does occur then nothing
> > good can come of returning pages which still refer to a foreign owned page
> > into the general allocation pool.
> > 
> > Instead we are forced to leak them. Log that we have done so.
> > 
> > The potential for failure only exists for autotranslated guest (e.g. ARM and
> > x86 PVH).
> > 
> > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
> > Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> > Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> > Cc: David Vrabel <david.vrabel@citrix.com>
> > Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> > Cc: xen-devel@lists.xenproject.org
> > ---
> > v2: Don't leak the actual pages array as well
> >     Log rc
> 
> 
> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
> 
> Konrad, you can go ahead and add it to xentip, unless you would rather
> have me do it.

Why don't you do it. Thanks!
> 
> 
> >  drivers/xen/privcmd.c |    9 +++++++--
> >  1 file changed, 7 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
> > index 8e74590..569a13b 100644
> > --- a/drivers/xen/privcmd.c
> > +++ b/drivers/xen/privcmd.c
> > @@ -533,12 +533,17 @@ static void privcmd_close(struct vm_area_struct *vma)
> >  {
> >  	struct page **pages = vma->vm_private_data;
> >  	int numpgs = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
> > +	int rc;
> >  
> >  	if (!xen_feature(XENFEAT_auto_translated_physmap) || !numpgs || !pages)
> >  		return;
> >  
> > -	xen_unmap_domain_mfn_range(vma, numpgs, pages);
> > -	free_xenballooned_pages(numpgs, pages);
> > +	rc = xen_unmap_domain_mfn_range(vma, numpgs, pages);
> > +	if (rc == 0)
> > +		free_xenballooned_pages(numpgs, pages);
> > +	else
> > +		pr_crit("unable to unmap MFN range: leaking %d pages. rc=%d\n",
> > +			numpgs, rc);
> >  	kfree(pages);
> >  }
> >  
> > -- 
> > 1.7.10.4
> > 
> > 
> > 

  reply	other threads:[~2013-12-06 20:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-04 15:52 [PATCH] xen: privcmd: do not return pages which we have failed to unmap Ian Campbell
2013-12-04 15:58 ` David Vrabel
2013-12-04 16:03   ` Ian Campbell
2013-12-04 16:12     ` David Vrabel
2013-12-06 17:58     ` Stefano Stabellini
2013-12-06 20:08       ` Konrad Rzeszutek Wilk [this message]
2013-12-06 20:43         ` Stefano Stabellini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20131206200836.GB10345@pegasus.dumpdata.com \
    --to=konrad.wilk@oracle.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=xen-devel@lists.xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.