Title: [129699] branches/chromium/1271/Source/WebCore/rendering/RenderArena.cpp
- Revision
- 129699
- Author
- [email protected]
- Date
- 2012-09-26 13:45:55 -0700 (Wed, 26 Sep 2012)
Log Message
Merge 129583
BUG=152354
Review URL: https://codereview.chromium.org/10993050
Modified Paths
Diff
Modified: branches/chromium/1271/Source/WebCore/rendering/RenderArena.cpp (129698 => 129699)
--- branches/chromium/1271/Source/WebCore/rendering/RenderArena.cpp 2012-09-26 20:45:03 UTC (rev 129698)
+++ branches/chromium/1271/Source/WebCore/rendering/RenderArena.cpp 2012-09-26 20:45:55 UTC (rev 129699)
@@ -42,6 +42,23 @@
#define ROUNDUP(x, y) ((((x)+((y)-1))/(y))*(y))
+#ifdef NDEBUG
+// Mask freelist pointers to detect corruption and prevent freelist spraying.
+// We use an arbitray function and rely on ASLR to randomize it.
+// The first value in RenderObject (or any class) is a vtable pointer, which always
+// overlaps with the next pointer. This change guarantees that the masked vtable/next
+// pointer will never point to valid memory. So, we should immediately crash on the
+// first invalid vtable access for a stale RenderObject pointer.
+// See http://download.crowdstrike.com/papers/hes-exploiting-a-coalmine.pdf.
+static void* MaskPtr(void* p)
+{
+ // The bottom bits are predictable because the binary is loaded on a boundary.
+ // This just shifts most of those predictable bits out.
+ const uintptr_t mask = ~(reinterpret_cast<uintptr_t>(WTF::fastMalloc) >> 13);
+ return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(p) ^ mask);
+}
+#endif
+
namespace WebCore {
#ifndef NDEBUG
@@ -103,7 +120,7 @@
result = m_recyclers[index];
if (result) {
// Need to move to the next object
- void* next = *((void**)result);
+ void* next = MaskPtr(*((void**)result));
m_recyclers[index] = next;
}
}
@@ -143,7 +160,7 @@
const int index = size >> 2;
void* currentTop = m_recyclers[index];
m_recyclers[index] = ptr;
- *((void**)ptr) = currentTop;
+ *((void**)ptr) = MaskPtr(currentTop);
}
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes