[go: nahoru, domu]

Jump to content

Valgrind: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
features of 3.9.0: Linux on MIPS64, s390x, etc.
Iandiver (talk | contribs)
m →‎Limitations of Memcheck: Wording: "in access of stack allocated data" -> "involving the access of stack allocated data"
Line 108: Line 108:
</source>
</source>


The inability to detect all errors in access of stack allocated data is especially noteworthy since
The inability to detect all errors involving the access of stack allocated data is especially noteworthy since
[[Buffer overflow|certain types of stack errors]] make software
[[Buffer overflow|certain types of stack errors]] make software
[[Vulnerability (computing)|vulnerable]] to the classic
[[Vulnerability (computing)|vulnerable]] to the classic

Revision as of 22:32, 14 November 2013

Developer(s)The Valgrind Developers
Stable release3.23.0 (April 26, 2024; 3 months ago (2024-04-26)) [±][1]
Repository
Operating systemLinux
Mac OS X
Android[2]
TypeProfiler, Memory debugger
LicenseGNU General Public License
Websitewww.valgrind.org

Valgrind /ˈvælɡrɪnd/ is a GPL licensed programming tool for memory debugging, memory leak detection, and profiling. It is named after the main entrance to Valhalla in Norse mythology.[3]

Valgrind was originally designed to be a free 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. It is used by a number of Linux-based projects.[4] Since version 3.5, Valgrind also works on Mac OS X.

The original author of Valgrind is Julian Seward, who in 2006 won a Google-O'Reilly Open Source Award for his work on Valgrind.[5][6] Several others have also made significant contributions, including Cerion Armour-Brown, Jeremy Fitzhardinge, Tom Hughes, Nicholas Nethercote, Paul Mackerras, Dirk Mueller, Bart Van Assche, Josef Weidendorfer and Robert Walsh.[7]

Overview

Valgrind is in essence a virtual machine using just-in-time (JIT) 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, SSA-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. Even though it could use dynamic translation (that is, the host and target processors are from different architectures), it doesn't. Valgrind recompiles binary code to run on host and target (or simulated) CPUs of the same architecture.

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 1/4 to 1/5 of the speed of the normal program.[citation needed]

Tools

Memcheck

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 from five to twenty times slower[citation needed] 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 there are no latent bugs (of the kind Memcheck can detect) in the code.

Other tools

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

  • 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.[9]
  • 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 callgraph analyzer created by Josef Weidendorfer was added to Valgrind as of version 3.2.0. KCacheGrind can visualize output from Callgrind as well as Cachegrind.
  • exp-sgcheck (named exp-ptrcheck prior to version 3.7), an experimental tool to find stack and global array overrun errors which Memcheck cannot find.[10] Some code results in false positives from this tool.[11]
  • exp-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.

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

Platforms supported

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

Since version 3.9.0 there is support for Linux on MIPS64 small 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.[1]


Limitations of Memcheck

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.[19] 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 experimental valgrind tool exp-sgcheck has been written to address this limitation in Memcheck. It will detect array overrun errors provided the first access to an array is within the array bounds. exp-sgcheck will not detect the array overrun in the code above, since the first access to an array is out of bounds, but it will detect the array overrun error in the following code.

  void func(void)
  {
    int i, Stack[5];

    for (i = 0; i <= 5; i++)
        Stack [i] = 0;        /* Within bounds for i=0..4, out of bounds error when i=5 */
  }

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

Notes

  1. ^ a b Valgrind News
  2. ^ Valgrind release notes
  3. ^ Valgrind FAQ
  4. ^ valgrind.org's list of users
  5. ^ valgrind.org's list of awards
  6. ^ Google-O'Reilly Open Source Awards - Hall of Fame
  7. ^ The Valgrind Developers
  8. ^ Valgrind main tool list
  9. ^ [1]
  10. ^ section on exp-sgcheck in the Valgrind user manual
  11. ^ [2]
  12. ^ http://valgrind.org/downloads/variants.html
  13. ^ K Serebryany, T Iskhodzhanov, ThreadSanitizer–data race detection in practice, Proceedings of the Workshop on Binary Instrumentation and Applications WBIA'09
  14. ^ Mac OS X port
  15. ^ ARM/Linux port
  16. ^ Valgrind FreeBSD port
  17. ^ Valgrind NetBSD port
  18. ^ Valgrind release notes
  19. ^ Valgrind FAQ

References