Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clang Address Sanitizer on OS X

I would like to use clang address sanitizer on OSX Mountain Lion, because Valgrind have problems with memory check on this platform. But when I had the -fsanitize=address during the compilation time (like I see on this page : http://clang.llvm.org/docs/AddressSanitizer.html), I got this error : clang: error: argument unused during compilation: '-fsanitize=address'

So, my question is how to use Clang Address Sanitizer on OS X ? If I can't use it, what tool I can use it?

I have download clang with Xcode and it's up-to-date. (maybe this version has not address sanitizer build with it)

like image 558
Guillaume Avatar asked Apr 21 '13 10:04

Guillaume


People also ask

How do I turn off AddressSanitizer?

Stack Use After Return (UAR) AddressSanitizer can optionally detect stack use after return problems. This is available by default, or explicitly ( -fsanitize-address-use-after-return=runtime ). To disable this check at runtime, set the environment variable ASAN_OPTIONS=detect_stack_use_after_return=0 .

What is AddressSanitizer error?

AddressSanitizer is a fast memory error detector. It consists of a compiler instrumentation module and a run-time library. The tool can detect the following types of bugs: Out-of-bounds accesses to heap, stack and globals. Use-after-free.

What is AddressSanitizer in GCC?

Address Sanitizer is a tool developed by Google detect memory access error such as use-after-free and memory leaks. It is built into GCC versions >= 4.8 and can be used on both C and C++ codes.


3 Answers

Address Sanitizer has been added as a new feature in Xcode 7.

Use the Runtime Sanitization > Enable Address Sanitizer flag in your scheme to enable the option.

git will then shown this change to your .xcscheme file:

enableAddressSanitizer = "YES"

From the New Features in Xcode 7 document:

Address Sanitizer. Xcode 7 can build your app with instrumentation designed to catch and debug memory corruption using the address sanitizer.

Objective-C and C code is susceptible to memory corruption issues such as stack and heap buffer overruns and use-after-free issues. When these memory violations occur, your app can crash unpredictably or display odd behavior. Memory corruption issues are difficult to track down because the crashes and odd behavior are often hard to reproduce and the cause can be far from the origin of the problem.

Enable Address Sanitizer

You enable the address sanitizer in the build scheme. Once enabled, added instrumentation is built into the app to catch memory violations immediately, enabling you to inspect the problem right at the place where it occurs. Other diagnostic information is provided as well, such as the relationship between the faulty address and a valid object on the heap and allocation/deallocation information, which helps you pinpoint and fix the problem quickly.

Address sanitizer is efficient—fast enough to be used regularly, as well as with interactive applications. It is supported on OS X, in the Simulator, and on iOS devices.

like image 119
pkamb Avatar answered Sep 21 '22 00:09

pkamb


AddressSanitizer support in Xcode isn't fully fledged yet. Please consider using the trunk Clang (see http://code.google.com/p/address-sanitizer/wiki/HowToBuild for build instructions)

like image 41
Glider Avatar answered Sep 21 '22 00:09

Glider


According to the source (in particular if you grab the clang-425.0.24 bundle from Apple's Open Source Site, the test file src/tools/clang/test/Driver/darwin-asan-nofortify.c:

// rdar://11496765, rdar://12417750
// -faddress-sanitizer is not currently supported.
// XFAIL: *

And, of course, there is an error using -faddress-sanitizer, so it looks like under OS X, you'll need to build clang yourself from more recent source in order to get the address sanitizer.

Command line option

Try using -faddress-sanitizer instead of -fsanitize=address. Apple's version appears to be based on an older version of CLANG, and if you run clang --help, the sanitizers are all of this form in this version.

like image 6
gaige Avatar answered Sep 23 '22 00:09

gaige