1. b99228d asan: Add a wcslen interceptor mirroring strlen by Reid Kleckner · 11 years ago
  2. e18e3f0 [sanitizer] Intercept poll/ppoll. by Evgeniy Stepanov · 11 years ago
  3. 67505a8 [Sanitizer] move strcpy and strncpy to common interceptors by Alexey Samsonov · 11 years ago
  4. eaca82c Fix check_lint warnings in sanitizers' runtime libraries by Timur Iskhodzhanov · 11 years ago
  5. 3fa122e [sanitizer] Support GLOB_ALTDIRFUNC in glob interceptor. by Evgeniy Stepanov · 11 years ago
  6. 12eb79d [sanitizer] Intercept realpath and canonicalize_file_name. by Evgeniy Stepanov · 11 years ago
  7. ae4e6fd [asan] Fix windows build. by Evgeniy Stepanov · 11 years ago
  8. c6ac98d [lsan] Handle fork() correctly. by Sergey Matveev · 11 years ago
  9. b9a9284 [ASan] try to fix Windows build by Alexey Samsonov · 11 years ago
  10. 9465cbd [ASan] Properly disable strict init-order checking when pthread_create is called by Alexey Samsonov · 11 years ago
  11. c8c312a Hide mlock/munlock info message under verbosity flag. by Alexey Samsonov · 11 years ago
  12. 341b9e6 [sanitizer] Intercept ptrace. by Evgeniy Stepanov · 11 years ago
  13. d530d89 [ASan] reimplement strdup() interceptor to get nicer stack traces for memory chunks allocated there by Alexey Samsonov · 11 years ago
  14. 3f9f877 [ASan] Delete excessive 'extern "C"' around mlock* interceptors. by Alexander Potapenko · 11 years ago
  15. fdde5a9 [ASan] mark ioctl test as xfailing on darwin. remove redundant semicolons by Alexey Samsonov · 11 years ago
  16. fd55281 [ASan] An early return from InitializeAsanInterceptors() on Mac has been considered unobvious. by Alexander Potapenko · 11 years ago
  17. 8d2438a Replaced 'bool .* = 0;' with '... = false;' by Timur Iskhodzhanov · 11 years ago
  18. 5e97ba3 Fix MSVC W3 compiler warnings by Timur Iskhodzhanov · 11 years ago
  19. 9d1525e [sanitizer] Share TSan accept & accept4 interceptors with other sanitizers. by Evgeniy Stepanov · 11 years ago
  20. 46efcb0 Disable init-order checking before destructors are run. by Alexey Samsonov · 11 years ago
  21. 332bf33 [ASan] Add allow_user_segv_handler to let users override SEGV handler installed by ASan by Alexey Samsonov · 11 years ago
  22. 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
  23. 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 11 years ago
  24. 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 11 years ago
  25. 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
  26. 649a270 [ASan] Kill the remainders of platform defines in favor of SANITIZER_ defines by Alexey Samsonov · 11 years ago
  27. 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
  28. be52366 asan/tsan: move strcasecmp() interceptor to sanitizer_common by Dmitry Vyukov · 11 years ago
  29. dfe3f96 [ASan] fix-up for r177634 on Windows. by Alexey Samsonov · 11 years ago
  30. def1be9 [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete ASan-specific AsanThreadRegistry. by Alexey Samsonov · 11 years ago
  31. 89c1384 [ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class into plain functions: they don't actually use registry by Alexey Samsonov · 11 years ago
  32. e1ba000 [asan] s/ASAN_POSIX/SANITIZER_POSIX/ by Evgeniy Stepanov · 11 years ago
  33. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  34. 8bd5e74 [ASan] Add the memcmp_strict flag (1 by default) that controls the behavior of accessibility checks in memcmp. by Alexander Potapenko · 11 years ago
  35. 1b057b2 [asan] fix the output for range accesses (memset, etc); improve the tests; more strict checking in memcmp by Kostya Serebryany · 11 years ago
  36. 72bbfd4 [ASan] Revert the incorrect macro on Linux. by Alexander Potapenko · 11 years ago
  37. 50a002e [ASan] Refactoring: nuke the redundant function declarations in asan_intercepted_functions.h by Alexander Potapenko · 11 years ago
  38. a84805f [asan] speedup by more than 2x handling of the small memset/memcpy/etc calls by Kostya Serebryany · 11 years ago
  39. 2673fd8 [asan] print a short one-line report summary after the full report. Currently, works only if symbolization happens in-process. by Kostya Serebryany · 11 years ago
  40. 6956398 [ASan] Delete the code related to static runtime on OS X. by Alexander Potapenko · 11 years ago
  41. 589dcda [asan] Fix nonsensical reports of partial right OOB. by Evgeniy Stepanov · 11 years ago
  42. 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 · 11 years ago
  43. 82a9080 [sanitizer] lint by Evgeniy Stepanov · 12 years ago
  44. 4f32c0b [sanitizer] Rename 2 files *.h->*.inc as appropriate. by Evgeniy Stepanov · 12 years ago
  45. bee7415 [sanitizer] Fix Mac build. by Evgeniy Stepanov · 12 years ago
  46. 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
  47. 996c4f2 [sanitizer] Common *scanf interceptors. by Evgeniy Stepanov · 12 years ago
  48. c20b321 [sanitizer] reapply r172719, r172721-172723, r172725, and also fix the warning on Mac. by Kostya Serebryany · 12 years ago
  49. 29b37ea Revert r172719, r172721-172723, and r172725. by Jakob Stoklund Olesen · 12 years ago
  50. 57db4ba [ASan] minor changes to swapcontext handling: don't clear shadow memory if context stack is too large by Alexey Samsonov · 12 years ago
  51. 0223e7d [tsan] move prctl interceptor from asan to common_interceptors thus enabling it for tsan too by Kostya Serebryany · 12 years ago
  52. c803319 [sanitizer] a bit more unification for interceptors (merge read/pread/pread64 in asan and tsan) by Kostya Serebryany · 12 years ago
  53. 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
  54. 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
  55. 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
  56. c75d848 [ASan] Typo fix in memcpy() and memmove() interceptors: ASAN_WRITE_RANGE and ASAN_READ_RANGE were swapped. by Alexander Potapenko · 12 years ago
  57. 1877e08 ASan: intercept prctl on Linux only by Alexey Samsonov · 12 years ago
  58. 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
  59. da60d62 [asan] undo the debug printf by Kostya Serebryany · 12 years ago
  60. 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
  61. 0870028 [ASan] Add interceptor for swapcontext to fight with false positives in some of its use cases. by Alexey Samsonov · 12 years ago
  62. 71578fa In the dynamic runtime on Mac OS, do not call internal_strdup() before __asan_init(). by Alexander Potapenko · 12 years ago
  63. 3e8458a [ASan] Use internal_memmove() in both static and dynamic runtime libraries if asan_inited != 0. by Alexander Potapenko · 12 years ago
  64. f1673e6 Implement internal_memmove. by Alexander Potapenko · 12 years ago
  65. 50f2e30 If !asan_inited, call internal versions of libc functions where available. by Alexander Potapenko · 12 years ago
  66. e933c9f Avoid calling __asan_init from memcpy(), memmove(), memset() during libSystem initialization. by Alexander Potapenko · 12 years ago
  67. b43d6a8 [Sanitizer] first effort to start building ASan runtime with -Werror in CMake build by Alexey Samsonov · 12 years ago
  68. 8d6e3f7 Allow to call strchr() from __asan_init(). Fixes PR13794. by Alexander Potapenko · 12 years ago
  69. d865fec Relocate the external headers provided by ASan and the common sanitizer library. by Chandler Carruth · 12 years ago
  70. beda44f Fix lint warnings. by Alexander Potapenko · 12 years ago
  71. 0ef5310 Commit the source and CMake changes that will allow to build ASan runtime by Alexander Potapenko · 12 years ago
  72. 05bf9a5 Introduce asan_intercepted_functions.h which contains the declarations wrapped functions and their wrappers. by Alexander Potapenko · 12 years ago
  73. f0c6de3 Do not attempt to intercept mlock and friends on Windows. by Alexander Potapenko · 12 years ago
  74. 00f1c09 Use the common interception machinery for mlock/munlock/mlockall/munlockall. by Alexander Potapenko · 12 years ago
  75. 487fee7 [ASan] Move error reporting code away from file with interceptors by Alexey Samsonov · 12 years ago
  76. 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
  77. fd2ae4f [ASan] cleanup interceptors code - prefer ASAN_INTERCEPT_FUNCTION_NAME macro to _WIN32, __APPLE__ etc. by Alexey Samsonov · 12 years ago
  78. 8648e77 [asan] ensure that asan_init is called in str[n]cmp. Bug found by Nick Kralevich (thanks) by Kostya Serebryany · 12 years ago
  79. 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
  80. cb8c4dc [ASan] Use common flags parsing machinery. by Alexey Samsonov · 12 years ago
  81. b4fefa7 [ASan] cleanup: trailing semicolons, trailing colons in enums by Alexey Samsonov · 12 years ago
  82. c925697 [Sanitizer] move all the rest re-implementations of libc functions from ASan runtime to common sanitizer runtime by Alexey Samsonov · 12 years ago
  83. 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
  84. 327c1c1 [Sanitizer] Move internal_memcmp to common sanitizer libc by Alexey Samsonov · 12 years ago
  85. 4fac148 [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/ by Alexey Samsonov · 12 years ago
  86. a1a25c1 [ASan] allow calls to memmove during rtl initialization by Alexey Samsonov · 12 years ago
  87. c1bdd5a [ASan] add interceptor for strncat by Alexey Samsonov · 12 years ago
  88. e0cff0b [asan] make tid u32 instead of int by Kostya Serebryany · 12 years ago
  89. 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
  90. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  91. b9a30e0 [Sanitizer] remove using namespace __sanitizer lines by Alexey Samsonov · 12 years ago
  92. 1f11d31 [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitizer_libc: sscanf, munmap, memchr by Alexey Samsonov · 12 years ago
  93. e5f5895 Remove file-type tags for .cc files in ASan run-time library by Alexey Samsonov · 12 years ago
  94. c0d78c1 [Sanitizer]: move internal_strcmp to sanitizer_common by Alexey Samsonov · 12 years ago
  95. 3836ff2 [Sanitizer] Move internal_strncpy to sanitizer_libc (and make its behavior conforming to manual) by Alexey Samsonov · 12 years ago
  96. ee39255 [asan] more renaming by Kostya Serebryany · 12 years ago
  97. 3f4c387 [asan] more renaming by Kostya Serebryany · 12 years ago
  98. 619e8bf Adding back a right parenthesis that was dropped in r157388. by Meador Inge · 12 years ago
  99. 580469d asan/tsan: weak interceptors by Dmitry Vyukov · 12 years ago
  100. 034bda5 Partially revert r154390 (http://llvm.org/viewvc/llvm-project?view=rev&revision=154390) by Alexander Potapenko · 12 years ago