|
AddressSanitizer
AddressSanitizer: a fast memory error detector
New: AddressSanitizer is released as part of LLVM 3.1. IntroductionAddressSanitizer (aka ASan) is a memory error detector for C/C++. It finds:
This tool is very fast. The average slowdown of the instrumented program is ~2x (see PerformanceNumbers). The tool consists of a compiler instrumentation module (currently, an LLVM pass) and a run-time library which replaces the malloc function. The tool works on x86 Linux and Mac, and ARM Android. See also:
Getting AddressSanitizerAddressSanitizer is a part of LLVM starting with version 3.1 and a part of GCC starting with version 4.8 So far, AddressSanitizer has been tested only on Linux Ubuntu 12.04, 64-bit (it can run both 64- and 32-bit programs), Mac 10.6, 10.7 and 10.8, and Android 4.2+. Using AddressSanitizerIn order to use AddressSanitizer you will need to compile and link your program using clang with the -fsanitize=address switch. % cat tests/use-after-free.c
#include <stdlib.h>
int main() {
char *x = (char*)malloc(10 * sizeof(char*));
free(x);
return x[5];
}
% ../clang_build_Linux/Release+Asserts/bin/clang -fsanitize=address -O1 -fno-omit-frame-pointer -g tests/use-after-free.cNow, run the executable. CallStack page describes how to obtain symbolized stack traces. % ./a.out
==9901==ERROR: AddressSanitizer: heap-use-after-free on address 0x60700000dfb5 at pc 0x45917b bp 0x7fff4490c700 sp 0x7fff4490c6f8
READ of size 1 at 0x60700000dfb5 thread T0
#0 0x45917a in main use-after-free.c:5
#1 0x7fce9f25e76c in __libc_start_main /build/buildd/eglibc-2.15/csu/libc-start.c:226
#2 0x459074 in _start (a.out+0x459074)
0x60700000dfb5 is located 5 bytes inside of 80-byte region [0x60700000dfb0,0x60700000e000)
freed by thread T0 here:
#0 0x4441ee in __interceptor_free projects/compiler-rt/lib/asan/asan_malloc_linux.cc:64
#1 0x45914a in main use-after-free.c:4
#2 0x7fce9f25e76c in __libc_start_main /build/buildd/eglibc-2.15/csu/libc-start.c:226
previously allocated by thread T0 here:
#0 0x44436e in __interceptor_malloc projects/compiler-rt/lib/asan/asan_malloc_linux.cc:74
#1 0x45913f in main use-after-free.c:3
#2 0x7fce9f25e76c in __libc_start_main /build/buildd/eglibc-2.15/csu/libc-start.c:226
SUMMARY: AddressSanitizer: heap-use-after-free use-after-free.c:5 mainInteraction with other toolsgdbSee AddressSanitizerAndDebugger ulimit -vThe ulimit -v command makes little sense with ASan-ified binaries because ASan consumes 20 terabytes of virtual memory (plus a bit). You may try more sophisticated tools to limit your memory consumption, e.g. http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documentation/cgroups/memory.txt FlagsSee the separate Flags page. Call stackSee the separate CallStack page. IncompatibilitySometimes an AddressSanitizer build may behave differently than the regular one. See Incompatiblity for details. Turning off instrumentationIn some cases a particular function should be ignored (not instrumented) by AddressSanitizer:
To ignore certain functions, one can use the no_sanitize_address attribute supported by Clang (3.3+) and GCC (4.8+). You can define the following macro: #if defined(__clang__) || defined (__GNUC__)
# define ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
#else
# define ATTRIBUTE_NO_SANITIZE_ADDRESS
#endif
...
ATTRIBUTE_NO_SANITIZE_ADDRESS
void ThisFunctionWillNotBeInstrumented() {...}Clang 3.1 and 3.2 supported __attribute__((no_address_safety_analysis)) instead. You may also ignore certain functions using a blacklist: create a file my_ignores.txt and pass it to AddressSanitizer at compile time using -fsanitize-blacklist=my_ignores.txt (This flag is new and is only supported by Clang now): # Ignore exactly this function (the names are mangled) fun:MyFooBar # Ignore MyFooBar(void) if it is in C++: fun:_Z8MyFooBarv # Ignore all function containing MyFooBar fun:*MyFooBar* FAQ
Comments?Send comments to address-sanitizer@googlegroups.com or in Google+. |

