From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54225) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W09D0-0001Ba-Px for qemu-devel@nongnu.org; Mon, 06 Jan 2014 07:23:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W09Cv-0002nd-Mq for qemu-devel@nongnu.org; Mon, 06 Jan 2014 07:23:06 -0500 Received: from smtp.citrix.com ([66.165.176.89]:26514) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W09Cv-0002nP-I9 for qemu-devel@nongnu.org; Mon, 06 Jan 2014 07:23:01 -0500 From: Stefano Stabellini Date: Mon, 6 Jan 2014 12:22:05 +0000 Message-ID: <1389010925-22832-1-git-send-email-stefano.stabellini@eu.citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH] xenfb: map framebuffer read-only and handle unmap errors List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xen-devel@lists.xensource.com Cc: stefano.stabellini@eu.citrix.com, phcoder@gmail.com, qemu-devel@nongnu.org, Gerd Hoffmann , Anthony Liguori , Paolo Bonzini The framebuffer is needlessly mapped (PROT_READ | PROT_WRITE), map it PROT_READ instead. The framebuffer is unmapped by replacing the framebuffer pages with anonymous shared memory, calling mmap. Check for return errors and print a warning. Signed-off-by: Stefano Stabellini CC: Gerd Hoffmann CC: Paolo Bonzini CC: Anthony Liguori CC: phcoder@gmail.com diff --git a/hw/display/xenfb.c b/hw/display/xenfb.c index f0333a0..cb9d456 100644 --- a/hw/display/xenfb.c +++ b/hw/display/xenfb.c @@ -495,7 +495,7 @@ static int xenfb_map_fb(struct XenFB *xenfb) munmap(map, n_fbdirs * XC_PAGE_SIZE); xenfb->pixels = xc_map_foreign_pages(xen_xc, xenfb->c.xendev.dom, - PROT_READ | PROT_WRITE, fbmfns, xenfb->fbpages); + PROT_READ, fbmfns, xenfb->fbpages); if (xenfb->pixels == NULL) goto out; @@ -903,6 +903,11 @@ static void fb_disconnect(struct XenDevice *xendev) fb->pixels = mmap(fb->pixels, fb->fbpages * XC_PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0); + if (fb->pixels == MAP_FAILED) { + xen_be_printf(xendev, 0, + "Couldn't replace the framebuffer with anonymous memory errno=%d\n", + errno); + } common_unbind(&fb->c); fb->feature_update = 0; fb->bug_trigger = 0;