Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Sep 2013 01:55:58 +0000 (UTC)
From:      Neel Natu <neel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r255684 - projects/bhyve_npt_pmap/sys/amd64/amd64
Message-ID:  <201309190155.r8J1twdN011717@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: neel
Date: Thu Sep 19 01:55:58 2013
New Revision: 255684
URL: http://svnweb.freebsd.org/changeset/base/255684

Log:
  If the page fault was triggered by reserved bits being set in the page table
  entry then panic immediately.
  
  Requested by:	kib@

Modified:
  projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c

Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c
==============================================================================
--- projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c	Thu Sep 19 01:12:59 2013	(r255683)
+++ projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c	Thu Sep 19 01:55:58 2013	(r255684)
@@ -734,6 +734,14 @@ trap_pfault(frame, usermode)
 	}
 
 	/*
+	 * If the trap was caused by errant bits in the PTE then panic.
+	 */
+	if (frame->tf_err & PGEX_RSV) {
+		trap_fatal(frame, eva);
+		return (-1);
+	}
+
+	/*
 	 * PGEX_I is defined only if the execute disable bit capability is
 	 * supported and enabled.
 	 */
@@ -822,10 +830,11 @@ trap_fatal(frame, eva)
 #endif
 	if (type == T_PAGEFLT) {
 		printf("fault virtual address	= 0x%lx\n", eva);
-		printf("fault code		= %s %s %s, %s\n",
+		printf("fault code		= %s %s %s%s, %s\n",
 			code & PGEX_U ? "user" : "supervisor",
 			code & PGEX_W ? "write" : "read",
 			code & PGEX_I ? "instruction" : "data",
+			code & PGEX_RSV ? " rsv" : "",
 			code & PGEX_P ? "protection violation" : "page not present");
 	}
 	printf("instruction pointer	= 0x%lx:0x%lx\n",



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309190155.r8J1twdN011717>