Sciweavers

DSN
2006
IEEE

Efficiently Detecting All Dangling Pointer Uses in Production Servers

13 years 8 months ago
Efficiently Detecting All Dangling Pointer Uses in Production Servers
In this paper, we propose a novel technique to detect all dangling pointer uses at run-time that is efficient enough for production use in server codes. One idea (previously used by Electric Fence, PageHeap) is to use a new virtual page for each allocation of the program and rely on page protection mechanisms to check dangling pointer accesses. This naive approach has two limitations that makes it impractical to use in production software: increased physical memory usage and increased address space usage. We propose two key improvements that alleviate both these problems. First, we use a new virtual page for each allocation of the program but map it to the same physical page as the original allocator. This allows using nearly identical physical memory as the original program while still retaining the dangling pointer detection capability. We also show how to implement this idea without requiring any changes to the underlying memory allocator. Our second idea alleviates the problem of ...
Dinakar Dhurjati, Vikram S. Adve
Added 22 Aug 2010
Updated 22 Aug 2010
Type Conference
Year 2006
Where DSN
Authors Dinakar Dhurjati, Vikram S. Adve
Comments (0)