Valgrind

From Wikipedia, the free encyclopedia
Original author(s)Julian Seward, Nicholas Nethercote[1]
Developer(s)Valgrind Development Team[2]
Initial releaseJul 27, 2002[3]
Stable release3.22.0 (October 31, 2023; 4 months ago (2023-10-31)) [±][4]
Repository
Operating systemLinux
FreeBSD
Solaris
Android[5]
TypeProfiler, Memory debugger
LicenseGNU General Public License
Websitewww.valgrind.org

Valgrind (/ˈvælɡrɪnd/)[6] is a programming tool for memory debugging, memory leak detection, and profiling.

Valgrind was originally designed to be a freely licensed memory debugging tool for Linux on x86, but has since evolved to become a generic framework for creating dynamic analysis tools such as checkers and profilers.

Overview[edit]

Valgrind is in essence a virtual machine using just-in-time compilation techniques, including dynamic recompilation. Nothing from the original program ever gets run directly on the host processor. Instead, Valgrind first translates the program into a temporary, simpler form called intermediate representation (IR), which is a processor-neutral, static single assignment form-based form. After the conversion, a tool (see below) is free to do whatever transformations it would like on the IR, before Valgrind translates the IR back into machine code and lets the host processor run it. Valgrind recompiles binary code to run on host and target (or simulated) CPUs of the same architecture. It also includes a GDB stub to allow debugging of the target program as it runs in Valgrind, with "monitor commands" that allow querying the Valgrind tool for various information.

A considerable amount of performance is lost in these transformations (and usually, the code the tool inserts); usually, code run with Valgrind and the "none" tool (which does nothing to the IR) runs at 20% to 25% of the speed of the normal program.[7][8]

Tools[edit]

Memcheck[edit]

There are multiple tools included with Valgrind (and several external ones). The default (and most used) tool is Memcheck. Memcheck inserts extra instrumentation code around almost all instructions, which keeps track of the validity (all unallocated memory starts as invalid or "undefined", until it is initialized into a deterministic state, possibly from other memory) and addressability (whether the memory address in question points to an allocated, non-freed memory block), stored in the so-called V bits and A bits respectively. As data is moved around or manipulated, the instrumentation code keeps track of the A and V bits, so they are always correct on a single-bit level.

In addition, Memcheck replaces the standard C memory allocator with its own implementation, which also includes memory guards around all allocated blocks (with the A bits set to "invalid"). This feature enables Memcheck to detect off-by-one errors where a program reads or writes outside an allocated block by a small amount. The problems Memcheck can detect and warn about include the following:

  • Use of uninitialized memory
  • Reading/writing memory after it has been free'd
  • Reading/writing off the end of malloc'd blocks
  • Memory leaks

The price of this is lost performance. Programs running under Memcheck usually run 20–30 times slower[9] than running outside Valgrind and use more memory (there is a memory penalty per allocation). Thus, few developers run their code under Memcheck (or any other Valgrind tool) all the time. They most commonly use such tools either to trace down some specific bug, or to verify that there are no latent bugs (of the kind Memcheck can detect) in the code.

Other tools[edit]

In addition to Memcheck, Valgrind has several other tools:[10]

  • None, runs the code in the virtual machine without performing any analysis and thus has the smallest possible CPU and memory overhead of all tools. Since Valgrind itself provides a trace back from a segmentation fault, the none tool provides this traceback at minimal overhead.
  • Addrcheck, similar to Memcheck but with much smaller CPU and memory overhead, thus catching fewer types of bugs. Addrcheck has been removed as of version 3.2.0.[11]
  • Massif, a heap profiler. The separate GUI massif-visualizer visualizes output from Massif.
  • Helgrind and DRD, detect race conditions in multithreaded code
  • Cachegrind, a cache profiler. The separate GUI KCacheGrind visualizes output from Cachegrind.
  • Callgrind, a call graph analyzer created by Josef Weidendorfer, added to Valgrind as of version 3.2.0. KCacheGrind can visualize output from Callgrind.
  • DHAT, dynamic heap analysis tool which analyzes how much memory is allocated and for how long, as well as patterns of memory usage.
  • exp-bbv, a performance simulator that extrapolates performance from a small sample set.

exp-sgcheck (named exp-ptrcheck prior to version 3.7), was removed in version 3.16.0. It was an experimental tool to find stack and global array overrun errors, which Memcheck cannot find.

There are also several externally developed tools available. One such tool is ThreadSanitizer, another detector of race conditions.[12][13]

Platforms supported[edit]

As of version 3.4.0, Valgrind supports Linux on x86, x86-64 and PowerPC. Support for Linux on ARMv7 (used for example in certain smartphones) was added in version 3.6.0.[14] Support for Solaris was added in version 3.11.0.[5] Support for OS X was added in version 3.5.0.[15] Support for FreeBSD x86 and amd64 was added in version 3.18.0. There are unofficial ports to other Unix-like platforms (like OpenBSD,[16] and NetBSD[17]). From version 3.7.0 the ARM/Android platform support was added.[5]

Since version 3.9.0 there is support for Linux on MIPS64 little and big endian, for MIPS DSP ASE on MIPS32, for s390x Decimal Floating Point instructions, for POWER8 (Power ISA 2.07) instructions, for Intel AVX2 instructions, for Intel Transactional Synchronization Extensions, both RTM and HLE and initial support for Hardware Transactional Memory on POWER.[4]

History and development[edit]

The name Valgrind is a reference to the main entrance of Valhalla from Norse mythology.[18][19] During development (before release) the project was named Heimdall; however, the name would have conflicted with a security package.

The original author of Valgrind is Julian Seward, who in 2006 won a Google-O'Reilly Open Source Award for his work on Valgrind.[20][21]

Several others have also made significant contributions, including Nicholas Nethercote, Bart Van Assche, Florian Krohm, Tom Hughes, Philippe Waroquiers, Mark Wielaard, Paul Floyd, Petar Jovanovic, Carl Love, Cerion Armour-Brown and Ivo Raisr.[22]

It is used by a number of Linux-based projects.[23]

Limitations of Memcheck[edit]

In addition to the performance penalty, an important limitation of Memcheck is its inability to detect all cases of bounds errors in the use of static or stack-allocated data.[24] The following code will pass the Memcheck tool in Valgrind without incident, despite containing the errors described in the comments:

  int Static[5];
  
  int func(void)
  {
    int Stack[5];
  
    Static[5] = 0;  /* Error - Static[0] to Static[4] exist, Static[5] is out of bounds */
    Stack [5] = 0;  /* Error - Stack[0] to Stack[4] exist, Stack[5] is out of bounds */
    
    return 0;
  }


The inability to detect all errors involving the access of stack allocated data is especially noteworthy since certain types of stack errors make software vulnerable to the classic stack smashing exploit.

See also[edit]

Notes[edit]

  1. ^ "AUTHORS". valgrind.org. Retrieved 2022-09-19.
  2. ^ "Valgrind: The Developers".
  3. ^ "Twenty years of Valgrind". Retrieved 2023-08-04.
  4. ^ a b Valgrind News
  5. ^ a b c Valgrind release notes
  6. ^ "Valgrind". valgrind.org. Retrieved 2023-05-04.
  7. ^ Valgrind homepage
  8. ^ Valgrind Manual
  9. ^ "Valgrind".
  10. ^ Valgrind main tool list
  11. ^ "Valgrind".
  12. ^ "Valgrind: Variants / Patches".
  13. ^ K Serebryany, T Iskhodzhanov, ThreadSanitizer–data race detection in practice, Proceedings of the Workshop on Binary Instrumentation and Applications WBIA'09
  14. ^ ARM/Linux port
  15. ^ OS X port
  16. ^ Valgrind OpenBSD port
  17. ^ "Valgrind NetBSD port". Archived from the original on 2006-02-09. Retrieved 2006-01-28.
  18. ^ Valgrind FAQ
  19. ^ "Grímnismál". Völuspá.org.
  20. ^ valgrind.org's list of awards
  21. ^ Google-O'Reilly Open Source Awards – Hall of Fame
  22. ^ The Valgrind Developers
  23. ^ valgrind.org's list of users
  24. ^ Valgrind FAQ

References[edit]

External links[edit]