1. 5e97ba3 Fix MSVC W3 compiler warnings by Timur Iskhodzhanov · 11 years ago
  2. 9d1525e [sanitizer] Share TSan accept & accept4 interceptors with other sanitizers. by Evgeniy Stepanov · 11 years ago
  3. 46efcb0 Disable init-order checking before destructors are run. by Alexey Samsonov · 11 years ago
  4. 332bf33 [ASan] Add allow_user_segv_handler to let users override SEGV handler installed by ASan by Alexey Samsonov · 11 years ago
  5. bdd0966 [ASan] Disable strict-init-order checker once we have more than one thread, as this mode is thread-hostile by Alexey Samsonov · 11 years ago
  6. 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 11 years ago
  7. 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 11 years ago
  8. a27bdf7 [sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b). Was puzzled why lint did not catch it. Turns out this check was disabled for asan source. fix all cases and enable the check by Kostya Serebryany · 11 years ago
  9. 649a270 [ASan] Kill the remainders of platform defines in favor of SANITIZER_ defines by Alexey Samsonov · 11 years ago
  10. 7e84349 [ASan] Speed-up initialization-order checking: create and use fast versions of PoisonShadow functions, store copies of __asan_global descriptors in a vector instead of list of pointers. This gives 3x speedup on both benchmarks and real binaries with lots of globals. by Alexey Samsonov · 11 years ago
  11. be52366 asan/tsan: move strcasecmp() interceptor to sanitizer_common by Dmitry Vyukov · 11 years ago
  12. dfe3f96 [ASan] fix-up for r177634 on Windows. by Alexey Samsonov · 11 years ago
  13. def1be9 [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete ASan-specific AsanThreadRegistry. by Alexey Samsonov · 11 years ago
  14. 89c1384 [ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class into plain functions: they don't actually use registry by Alexey Samsonov · 11 years ago
  15. e1ba000 [asan] s/ASAN_POSIX/SANITIZER_POSIX/ by Evgeniy Stepanov · 11 years ago
  16. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  17. 8bd5e74 [ASan] Add the memcmp_strict flag (1 by default) that controls the behavior of accessibility checks in memcmp. by Alexander Potapenko · 12 years ago
  18. 1b057b2 [asan] fix the output for range accesses (memset, etc); improve the tests; more strict checking in memcmp by Kostya Serebryany · 12 years ago
  19. 72bbfd4 [ASan] Revert the incorrect macro on Linux. by Alexander Potapenko · 12 years ago
  20. 50a002e [ASan] Refactoring: nuke the redundant function declarations in asan_intercepted_functions.h by Alexander Potapenko · 12 years ago
  21. a84805f [asan] speedup by more than 2x handling of the small memset/memcpy/etc calls by Kostya Serebryany · 12 years ago
  22. 2673fd8 [asan] print a short one-line report summary after the full report. Currently, works only if symbolization happens in-process. by Kostya Serebryany · 12 years ago
  23. 6956398 [ASan] Delete the code related to static runtime on OS X. by Alexander Potapenko · 12 years ago
  24. 589dcda [asan] Fix nonsensical reports of partial right OOB. by Evgeniy Stepanov · 12 years ago
  25. c70fa28 [ASan] Split ASan interface header into private and public parts. Add a test that makes sure users can include interface header by Alexey Samsonov · 12 years ago
  26. 82a9080 [sanitizer] lint by Evgeniy Stepanov · 12 years ago
  27. 4f32c0b [sanitizer] Rename 2 files *.h->*.inc as appropriate. by Evgeniy Stepanov · 12 years ago
  28. bee7415 [sanitizer] Fix Mac build. by Evgeniy Stepanov · 12 years ago
  29. 541cfb1 [asan] fix two off-by-one errors that seem to affect only PowerPC because only there the stack top may be equal to the address space top. Noted by Andreas Schwab in http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55975#c11 . Also make swapcontext interceptor a bit more robust by Kostya Serebryany · 12 years ago
  30. 996c4f2 [sanitizer] Common *scanf interceptors. by Evgeniy Stepanov · 12 years ago
  31. c20b321 [sanitizer] reapply r172719, r172721-172723, r172725, and also fix the warning on Mac. by Kostya Serebryany · 12 years ago
  32. 29b37ea Revert r172719, r172721-172723, and r172725. by Jakob Stoklund Olesen · 12 years ago
  33. 57db4ba [ASan] minor changes to swapcontext handling: don't clear shadow memory if context stack is too large by Alexey Samsonov · 12 years ago
  34. 0223e7d [tsan] move prctl interceptor from asan to common_interceptors thus enabling it for tsan too by Kostya Serebryany · 12 years ago
  35. c803319 [sanitizer] a bit more unification for interceptors (merge read/pread/pread64 in asan and tsan) by Kostya Serebryany · 12 years ago
  36. eb28093 [asan] implement more strict checking for memset/etc parameters. Instead of checking the first and the last byte, we check the entire shadow region. This costs ~10 slowdown for the instrumented functions. Motivated by a nasty memset-buffer-overflow-by-140-bytes in chrome which was reported as a use-after-free or not at all by Kostya Serebryany · 12 years ago
  37. a30c8f9 [asan] add two asan flags: fast_unwind_on_fatal and fast_unwind_on_malloc to allow using the slow CFI-based unwinder by Kostya Serebryany · 12 years ago
  38. 8530e2b [asan] add sanitizer_common/sanitizer_common_interceptors.h with pread/pread64/read interceptors. Use it in asan. Add asan tests for pread/etc. Add FIXME to tsan/msan interceptors by Kostya Serebryany · 12 years ago
  39. c75d848 [ASan] Typo fix in memcpy() and memmove() interceptors: ASAN_WRITE_RANGE and ASAN_READ_RANGE were swapped. by Alexander Potapenko · 12 years ago
  40. 1877e08 ASan: intercept prctl on Linux only by Alexey Samsonov · 12 years ago
  41. 716e2f2 [asan] intercept prctl(PR_SET_NAME) and set the thread name. Output the thread names (if non-empty) in asan reports by Kostya Serebryany · 12 years ago
  42. da60d62 [asan] undo the debug printf by Kostya Serebryany · 12 years ago
  43. 72166ca [tsan] get rid of *allocator64* files, moving everything to *allocator* files. This will help with the 32-bit allocator implementation and testing by Kostya Serebryany · 12 years ago
  44. 0870028 [ASan] Add interceptor for swapcontext to fight with false positives in some of its use cases. by Alexey Samsonov · 12 years ago
  45. 71578fa In the dynamic runtime on Mac OS, do not call internal_strdup() before __asan_init(). by Alexander Potapenko · 12 years ago
  46. 3e8458a [ASan] Use internal_memmove() in both static and dynamic runtime libraries if asan_inited != 0. by Alexander Potapenko · 12 years ago
  47. f1673e6 Implement internal_memmove. by Alexander Potapenko · 12 years ago
  48. 50f2e30 If !asan_inited, call internal versions of libc functions where available. by Alexander Potapenko · 12 years ago
  49. e933c9f Avoid calling __asan_init from memcpy(), memmove(), memset() during libSystem initialization. by Alexander Potapenko · 12 years ago
  50. b43d6a8 [Sanitizer] first effort to start building ASan runtime with -Werror in CMake build by Alexey Samsonov · 12 years ago
  51. 8d6e3f7 Allow to call strchr() from __asan_init(). Fixes PR13794. by Alexander Potapenko · 12 years ago
  52. d865fec Relocate the external headers provided by ASan and the common sanitizer library. by Chandler Carruth · 12 years ago
  53. beda44f Fix lint warnings. by Alexander Potapenko · 12 years ago
  54. 0ef5310 Commit the source and CMake changes that will allow to build ASan runtime by Alexander Potapenko · 12 years ago
  55. 05bf9a5 Introduce asan_intercepted_functions.h which contains the declarations wrapped functions and their wrappers. by Alexander Potapenko · 12 years ago
  56. f0c6de3 Do not attempt to intercept mlock and friends on Windows. by Alexander Potapenko · 12 years ago
  57. 00f1c09 Use the common interception machinery for mlock/munlock/mlockall/munlockall. by Alexander Potapenko · 12 years ago
  58. 487fee7 [ASan] Move error reporting code away from file with interceptors by Alexey Samsonov · 12 years ago
  59. 37b3fcd Make strcat() and strncat() more standard-compliant (check for invalid parameters even if zero bytes is copied, more accurate overlap check) by Alexander Potapenko · 12 years ago
  60. fd2ae4f [ASan] cleanup interceptors code - prefer ASAN_INTERCEPT_FUNCTION_NAME macro to _WIN32, __APPLE__ etc. by Alexey Samsonov · 12 years ago
  61. 8648e77 [asan] ensure that asan_init is called in str[n]cmp. Bug found by Nick Kralevich (thanks) by Kostya Serebryany · 12 years ago
  62. 79d12e8 For wild addresses in the shadow or shadow gap areas print an error message instead of crashing on a check. by Alexander Potapenko · 12 years ago
  63. cb8c4dc [ASan] Use common flags parsing machinery. by Alexey Samsonov · 12 years ago
  64. b4fefa7 [ASan] cleanup: trailing semicolons, trailing colons in enums by Alexey Samsonov · 12 years ago
  65. c925697 [Sanitizer] move all the rest re-implementations of libc functions from ASan runtime to common sanitizer runtime by Alexey Samsonov · 12 years ago
  66. 88207ab [Sanitizer] Use DEFINE_REAL macro in TSan runtime to call libc implementations of functions. Move strchr to sanitizer_libc. by Alexey Samsonov · 12 years ago
  67. 327c1c1 [Sanitizer] Move internal_memcmp to common sanitizer libc by Alexey Samsonov · 12 years ago
  68. 4fac148 [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/ by Alexey Samsonov · 12 years ago
  69. a1a25c1 [ASan] allow calls to memmove during rtl initialization by Alexey Samsonov · 12 years ago
  70. c1bdd5a [ASan] add interceptor for strncat by Alexey Samsonov · 12 years ago
  71. e0cff0b [asan] make tid u32 instead of int by Kostya Serebryany · 12 years ago
  72. e954101 [Sanitizer]: Introduce a common internal printf function. For now, also use tool-specific wrappers TsanPrintf (its output is controlled by TSan flags) and AsanPrintf (which copies its results to the ASan-private buffer). Supported formats: %[z]{d,u,x}, %s, %p. Re-write all format strings in TSan according to this format (this should have no effect on 64-bit platforms). by Alexey Samsonov · 12 years ago
  73. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  74. b9a30e0 [Sanitizer] remove using namespace __sanitizer lines by Alexey Samsonov · 12 years ago
  75. 1f11d31 [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitizer_libc: sscanf, munmap, memchr by Alexey Samsonov · 12 years ago
  76. e5f5895 Remove file-type tags for .cc files in ASan run-time library by Alexey Samsonov · 12 years ago
  77. c0d78c1 [Sanitizer]: move internal_strcmp to sanitizer_common by Alexey Samsonov · 12 years ago
  78. 3836ff2 [Sanitizer] Move internal_strncpy to sanitizer_libc (and make its behavior conforming to manual) by Alexey Samsonov · 12 years ago
  79. ee39255 [asan] more renaming by Kostya Serebryany · 12 years ago
  80. 3f4c387 [asan] more renaming by Kostya Serebryany · 12 years ago
  81. 619e8bf Adding back a right parenthesis that was dropped in r157388. by Meador Inge · 12 years ago
  82. 580469d asan/tsan: weak interceptors by Dmitry Vyukov · 12 years ago
  83. 034bda5 Partially revert r154390 (http://llvm.org/viewvc/llvm-project?view=rev&revision=154390) by Alexander Potapenko · 12 years ago
  84. 73ac687 Change the way ASan interacts with custom signal handlers. by Alexander Potapenko · 12 years ago
  85. 4d5f98d [ASan] move replacements for new/delete to separate file by Alexey Samsonov · 12 years ago
  86. d01c51d [ASan] use correct C-version of strchr on Windows by Alexey Samsonov · 12 years ago
  87. ebb9702 Add internal_memset and replace the uses of REAL(memset) with it where the performance allows. by Alexander Potapenko · 12 years ago
  88. 847f932 [ASan] interceptors for atoi/atol/atoll by Alexey Samsonov · 12 years ago
  89. 8f6a77f [ASan] add interceptor for strtol by Alexey Samsonov · 12 years ago
  90. 34a3202 [ASan] use macro to define if we should intercept signal/sigaction by Alexey Samsonov · 12 years ago
  91. 670439c [ASan] revert r153378 by Alexey Samsonov · 12 years ago
  92. 4f24544 [ASan] simplify ASAN_INTERCEPT_* definitions by Alexey Samsonov · 12 years ago
  93. 81a7a4a [ASan] use ASAN_INTERCEPT_STRNLEN instead of defined(__APPLE__) by Alexey Samsonov · 12 years ago
  94. 84ba324 [ASan] add interceptor for strtoll by Alexey Samsonov · 12 years ago
  95. a489842 [asan] one more try to remove pthread.h from asan_interceptors.cc by Alexey Samsonov · 12 years ago
  96. 56e2524 [asan] add missing declarations from string.h and remove this header by Alexey Samsonov · 12 years ago
  97. 4e7abdc [asan] use extern declaraions of libc functions on Win and on Mac by Alexey Samsonov · 12 years ago
  98. 73fe35f [asan]: remove signal.h system header from interceptors by Alexey Samsonov · 12 years ago
  99. beba644 [asan] merge mac-specific interceptors into one function by Alexey Samsonov · 12 years ago
  100. 5cf832d [asan]: remove asan_mac.h by Alexey Samsonov · 12 years ago