Hardware-Enforced Comprehensive Memory Safety

  • Authors:
  • Santosh Nagarakatte;Milo Martin;Steve Zdancewic

  • Affiliations:
  • Rutgers University;University of Pennsylvania;University of Pennsylvania

  • Venue:
  • IEEE Micro
  • Year:
  • 2013

Quantified Score

Hi-index 0.00

Visualization

Abstract

The lack of memory safety in languages such as C and C++ is a root source of exploitable security vulnerabilities. This article presents Watchdog, a hardware approach that eliminates such vulnerabilities by enforcing comprehensive memory safety. Inspired by prior software-only mechanisms, Watchdog maintains bounds and identifier metadata with pointers, propagates them on pointer operations, and checks them on pointer dereferences. Checking this bounds and identifier metadata provides both precise, byte-granularity buffer-overflow protection and protection from use-after-free errors, even in the presence of reallocations. Watchdog stores pointer metadata in a disjoint shadow space to provide comprehensive protection and ensure compatibility with existing code. To streamline implementation and reduce runtime overhead, Watchdog uses micro-operations to implement metadata access and checking, eliminates metadata copies via a register renaming scheme, and uses a dedicated identifier cache to reduce checking overhead.