All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Scott Parish" <srparish@us.ibm.com>
To: xen-devel@lists.xensource.com
Subject: bitopts functions overflowing page boundarys
Date: Sat, 28 May 2005 04:43:20 +0000	[thread overview]
Message-ID: <20050528044320.GA9951@us.ibm.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 961 bytes --]

u.inuse.type_info is at the end of the pfn_info structure, and is
u32 for both x86_32 and x86_64--in this location it can also be the
last 32 bits of a page.

several functions use bitopts.h functions to manipulate this member, and
on x86_64 these functions use u64 instructions, which will overflow the
page boundary, and possibly the end of memory as we see here:

   (XEN) &page->u.inuse.type_info = 0xffff828402fffffc
   (XEN) CPU:    0
   (XEN) EIP:    e010:[<ffff830000129089>]      

   <registers and stack ommitted>

   (XEN) Pagetable walk from ffff828403000000:
   (XEN)  L4 = 00000000016a5063
   (XEN)   L3 = 00000000016a6063
   (XEN)    L2 = 0000000000000000 

   ****************************************
   Panic on CPU0:
   CPU0 FATAL PAGE FAULT
   [error_code=0002]
   Faulting linear address: ffff828403000000
   ****************************************

the attached patch fixes this.

sRp

-- 
Scott Parish
Signed-off-by: srparish@us.ibm.com

[-- Attachment #2: 32bit.diff --]
[-- Type: text/plain, Size: 6607 bytes --]

diff -rN -u -p old-xen-64-4/xen/arch/x86/domain.c new-xen-64-4/xen/arch/x86/domain.c
--- old-xen-64-4/xen/arch/x86/domain.c	2005-05-25 18:41:08.000000000 +0000
+++ new-xen-64-4/xen/arch/x86/domain.c	2005-05-28 02:52:19.000000000 +0000
@@ -927,10 +927,10 @@ static void relinquish_memory(struct dom
             continue;
         }
 
-        if ( test_and_clear_bit(_PGT_pinned, &page->u.inuse.type_info) )
+        if ( test_and_clear_bit32(_PGT_pinned, &page->u.inuse.type_info) )
             put_page_and_type(page);
 
-        if ( test_and_clear_bit(_PGC_allocated, &page->count_info) )
+        if ( test_and_clear_bit32(_PGC_allocated, &page->count_info) )
             put_page(page);
 
         /*
diff -rN -u -p old-xen-64-4/xen/arch/x86/domain_build.c new-xen-64-4/xen/arch/x86/domain_build.c
--- old-xen-64-4/xen/arch/x86/domain_build.c	2005-05-25 18:41:08.000000000 +0000
+++ new-xen-64-4/xen/arch/x86/domain_build.c	2005-05-28 02:41:41.000000000 +0000
@@ -309,7 +309,7 @@ int construct_dom0(struct domain *d,
             /* Get another ref to L2 page so that it can be pinned. */
             if ( !get_page_and_type(page, d, PGT_l2_page_table) )
                 BUG();
-            set_bit(_PGT_pinned, &page->u.inuse.type_info);
+            set_bit32(_PGT_pinned, &page->u.inuse.type_info);
         }
         else
         {
diff -rN -u -p old-xen-64-4/xen/arch/x86/mm.c new-xen-64-4/xen/arch/x86/mm.c
--- old-xen-64-4/xen/arch/x86/mm.c	2005-05-24 17:35:00.000000000 +0000
+++ new-xen-64-4/xen/arch/x86/mm.c	2005-05-28 02:45:37.000000000 +0000
@@ -1299,7 +1299,7 @@ int get_page_type(struct pfn_info *page,
         }
 
         /* Noone else is updating simultaneously. */
-        __set_bit(_PGT_validated, &page->u.inuse.type_info);
+        __set_bit32(_PGT_validated, &page->u.inuse.type_info);
     }
 
     return 1;
@@ -1522,8 +1522,8 @@ int do_mmuext_op(
                 break;
             }
             
-            if ( unlikely(test_and_set_bit(_PGT_pinned,
-                                           &page->u.inuse.type_info)) )
+            if ( unlikely(test_and_set_bit32(_PGT_pinned,
+                                             &page->u.inuse.type_info)) )
             {
                 MEM_LOG("Mfn %lx already pinned", op.mfn);
                 put_page_and_type(page);
@@ -1553,8 +1553,8 @@ int do_mmuext_op(
                 MEM_LOG("Mfn %lx bad domain (dom=%p)",
                         op.mfn, page_get_owner(page));
             }
-            else if ( likely(test_and_clear_bit(_PGT_pinned, 
-                                                &page->u.inuse.type_info)) )
+            else if ( likely(test_and_clear_bit32(_PGT_pinned, 
+                                                  &page->u.inuse.type_info)) )
             {
                 put_page_and_type(page);
                 put_page(page);
diff -rN -u -p old-xen-64-4/xen/arch/x86/shadow.c new-xen-64-4/xen/arch/x86/shadow.c
--- old-xen-64-4/xen/arch/x86/shadow.c	2005-05-25 18:41:08.000000000 +0000
+++ new-xen-64-4/xen/arch/x86/shadow.c	2005-05-28 02:52:53.000000000 +0000
@@ -81,7 +81,7 @@ shadow_promote(struct domain *d, unsigne
         FSH_LOG("%s: couldn't find/remove all write accesses, gpfn=%lx gmfn=%lx",
                 __func__, gpfn, gmfn);
 #if 1 || defined(LIVE_DANGEROUSLY)
-        set_bit(_PGC_page_table, &page->count_info);
+        set_bit32(_PGC_page_table, &page->count_info);
         return 1;
 #endif
         return 0;
@@ -103,14 +103,15 @@ shadow_promote(struct domain *d, unsigne
     //
     if ( unlikely(!get_page(page, d)) )
         BUG(); // XXX -- needs more thought for a graceful failure
-    if ( unlikely(test_and_clear_bit(_PGT_pinned, &page->u.inuse.type_info)) )
+    if ( unlikely(test_and_clear_bit32(_PGT_pinned,
+                                       &page->u.inuse.type_info)) )
     {
         pinned = 1;
         put_page_and_type(page);
     }
     if ( get_page_type(page, PGT_base_page_table) )
     {
-        set_bit(_PGC_page_table, &page->count_info);
+        set_bit32(_PGC_page_table, &page->count_info);
         put_page_type(page);
     }
     else
diff -rN -u -p old-xen-64-4/xen/common/dom_mem_ops.c new-xen-64-4/xen/common/dom_mem_ops.c
--- old-xen-64-4/xen/common/dom_mem_ops.c	2005-05-24 17:35:00.000000000 +0000
+++ new-xen-64-4/xen/common/dom_mem_ops.c	2005-05-28 02:53:10.000000000 +0000
@@ -106,10 +106,10 @@ free_dom_mem(struct domain *d,
                 return i;
             }
 
-            if ( test_and_clear_bit(_PGT_pinned, &page->u.inuse.type_info) )
+            if ( test_and_clear_bit32(_PGT_pinned, &page->u.inuse.type_info) )
                 put_page_and_type(page);
             
-            if ( test_and_clear_bit(_PGC_allocated, &page->count_info) )
+            if ( test_and_clear_bit32(_PGC_allocated, &page->count_info) )
                 put_page(page);
 
             shadow_sync_and_drop_references(d, page);
diff -rN -u -p old-xen-64-4/xen/include/asm-x86/bitops.h new-xen-64-4/xen/include/asm-x86/bitops.h
--- old-xen-64-4/xen/include/asm-x86/bitops.h	2005-05-25 18:41:08.000000000 +0000
+++ new-xen-64-4/xen/include/asm-x86/bitops.h	2005-05-28 04:06:14.000000000 +0000
@@ -46,6 +46,14 @@ static __inline__ void set_bit(long nr, 
 		:"dIr" (nr));
 }
 
+static __inline__ void set_bit32(int nr, volatile void * addr)
+{
+	__asm__ __volatile__( LOCK_PREFIX
+		"btsl %1,%0"
+		:"=m" (ADDR)
+		:"dIr" (nr));
+}
+
 /**
  * __set_bit - Set a bit in memory
  * @nr: the bit to set
@@ -63,6 +71,14 @@ static __inline__ void __set_bit(long nr
 		:"dIr" (nr));
 }
 
+static __inline__ void __set_bit32(int nr, volatile void * addr)
+{
+	__asm__(
+		"btsl %1,%0"
+		:"=m" (ADDR)
+		:"dIr" (nr));
+}
+
 /**
  * clear_bit - Clears a bit in memory
  * @nr: Bit to clear
@@ -136,6 +152,17 @@ static __inline__ int test_and_set_bit(l
 	return oldbit;
 }
 
+static __inline__ int test_and_set_bit32(int nr, volatile void * addr)
+{
+	int oldbit;
+
+	__asm__ __volatile__( LOCK_PREFIX
+		"btsl %2,%1\n\tsbbl %0,%0"
+		:"=r" (oldbit),"=m" (ADDR)
+		:"dIr" (nr) : "memory");
+	return oldbit;
+}
+
 /**
  * __test_and_set_bit - Set a bit and return its old value
  * @nr: Bit to set
@@ -175,6 +202,17 @@ static __inline__ int test_and_clear_bit
 	return oldbit;
 }
 
+static __inline__ int test_and_clear_bit32(int nr, volatile void * addr)
+{
+	int oldbit;
+
+	__asm__ __volatile__( LOCK_PREFIX
+		"btrl %2,%1\n\tsbbl %0,%0"
+		:"=r" (oldbit),"=m" (ADDR)
+		:"dIr" (nr) : "memory");
+	return oldbit;
+}
+
 /**
  * __test_and_clear_bit - Clear a bit and return its old value
  * @nr: Bit to set


[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

             reply	other threads:[~2005-05-28  4:43 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-05-28  4:43 Scott Parish [this message]
2005-05-28  9:01 ` bitopts functions overflowing page boundarys Keir Fraser
2005-05-28  9:04   ` Scott Parish
2005-05-28  9:51     ` Keir Fraser
2005-05-28  9:25       ` Scott Parish

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=20050528044320.GA9951@us.ibm.com \
    --to=srparish@us.ibm.com \
    --cc=xen-devel@lists.xensource.com \
    /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.