1. 8496afd [nolibc] Disable the GCC stack protector when building sanitizer runtimes. by Peter Collingbourne · 11 years ago
  2. f310654 [sanitizer] Fixed InitTlsSize for Android. by Sergey Matveev · 11 years ago
  3. 35f1c1f [sanitizer] Fixed includes in sanitizer_linux.cc for Android. by Sergey Matveev · 11 years ago
  4. 24323de [sanitizer] Move GetThreadStackAndTls from TSan to sanitizer_common. by Sergey Matveev · 11 years ago
  5. 2be3a28 [sanitizer] Sanitizer __internal_*stat interface. by Evgeniy Stepanov · 11 years ago
  6. 0b4bf4d [msan] Common flags in MSan. by Sergey Matveev · 11 years ago
  7. ed20ebe [asan] Common flags in ASan. by Sergey Matveev · 11 years ago
  8. 346e348 I was wrong in my testing. by Bill Wendling · 11 years ago
  9. d83a6d8 Use unbuffered I/O. This reduces the runtime by about half. Our implementation is now only about 5 times slower than gcc's. by Bill Wendling · 11 years ago
  10. 2b26c90 Rewrite sw_vers makefile check to avoid error message on Linux. by Bob Wilson · 11 years ago
  11. 6a72c9d asan: fix windows build by Dmitry Vyukov · 11 years ago
  12. 19bbac0 tsan: comment out debug output in test by Dmitry Vyukov · 11 years ago
  13. 4f5e4bb asan/tsan: fix printf(), on the second pass it prints garbage and crashes on random pointer dereference by Dmitry Vyukov · 11 years ago
  14. 94d8b44 tsan: fix deadlock detector table (OK to lock sync var mutex during reporting) by Dmitry Vyukov · 11 years ago
  15. 924047f tsan: reverse stack trace for failed CHECK's, this is how we print traces in other places by Dmitry Vyukov · 11 years ago
  16. 8ecd0e5 tsan: add interface functions for unaligned access, e.g. __sanitizer_unaligned_load16 by Dmitry Vyukov · 11 years ago
  17. f82eb24 asna/tsan/msan: fix wait() interceptors to allow NULL arguments by Dmitry Vyukov · 11 years ago
  18. 62db3f2 Revert r180599 "[sanitizer] Clear LD_PRELOAD when forking an external symbolizer." by Sergey Matveev · 11 years ago
  19. ab06583 [sanitizer] Clear LD_PRELOAD when forking an external symbolizer. by Sergey Matveev · 11 years ago
  20. e14f63d Add -fno-rtti to ASan runtime cflags on Android. by Evgeniy Stepanov · 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. 4526909 tsan: add a test that used to crash, fixed by r180180. by Dmitry Vyukov · 11 years ago
  23. 46fea91 tsan: fix stack traces for malloc and free by Dmitry Vyukov · 11 years ago
  24. 5d9915e tsan: run tests sequentially otherwise cmake says: by Dmitry Vyukov · 11 years ago
  25. edd2821 tsan: disable getpwuid_r() and glob64() interceptors under tsan, because they cause interceptor recursion if user intercepts fopen() by Dmitry Vyukov · 11 years ago
  26. 0304941 tsan: fix crash when data race happens on out-of-bounds accesses. by Dmitry Vyukov · 11 years ago
  27. 1d38069 Use the new iOS deployment target command-line options. by Bob Wilson · 11 years ago
  28. d36f07c tsan: support heap starting at 0x04c0 (used in some custom deplyments) by Dmitry Vyukov · 11 years ago
  29. 4860c68 tsan: update Go memory mapping, Go now uses 0x00c0 heap base by Dmitry Vyukov · 11 years ago
  30. 9530eb7 [sanitizer] Intercept inet_pton and inet_ntop. by Evgeniy Stepanov · 11 years ago
  31. 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
  32. 11347bf [MSan] Make a few interface functions accept 'const void *' instead of 'void*' by Alexey Samsonov · 11 years ago
  33. b6c8e47 [msan] Unpoison the result of posix_memalign. by Evgeniy Stepanov · 11 years ago
  34. ff7c14f Revert r180082 and add a test for SetEnv function by Alexey Samsonov · 11 years ago
  35. 51e9728 [ASan] Make wait.cc more Darwin-compatible: fix the header name and the CHECK patterns. by Alexander Potapenko · 11 years ago
  36. 8db82e1 [ASan] Disable AddressSanitizer.AllocDeallocMismatch on Darwin. by Alexander Potapenko · 11 years ago
  37. 103a63e [sanitizer] Intercept getgrnam{_r}, getgrgid{_r}. by Evgeniy Stepanov · 11 years ago
  38. 7cdae16 [msan] Allow clock_getres(, 0). by Evgeniy Stepanov · 11 years ago
  39. 51ecba3 [Sanitizer] Delete unused function by Alexey Samsonov · 11 years ago
  40. 1d8bc4b [sanitizer] Fix lint. by Evgeniy Stepanov · 11 years ago
  41. 4aa08fa Improve performance of file I/O. by Bill Wendling · 11 years ago
  42. 64544c1 Fixup for r179843: add missing header by Alexey Samsonov · 11 years ago
  43. dfeef67 [ASan] Make init-order checker allow access to already initialized globals. by Alexey Samsonov · 11 years ago
  44. 7733017 [TSan] Allocate fd table in user heap instead of using internal allocator. We need this to catch races on fds. by Alexey Samsonov · 11 years ago
  45. 99f1e20 [Sanitizer] Rework r176802: share code between Printf and Report and simplify it a bit by Alexey Samsonov · 11 years ago
  46. e8a005f [Sanitizer] Don't die in symbolizer if it can't read /proc/self/exe link by Alexey Samsonov · 11 years ago
  47. 102c043 Wrap macro invocations in braces to supress 'suggest braces around empty body in an ‘if’ statement' warning. by Andy Gibbs · 11 years ago
  48. 3f5528b [asan] Fix spelling in asan_rtl.cc Test commit. by Sergey Matveev · 11 years ago
  49. b921bf2 [msan] Fix gcc build of msan_test. by Evgeniy Stepanov · 11 years ago
  50. fa56896 [sanitizer] Implement wait4 and waitpid syscall hooks. by Evgeniy Stepanov · 11 years ago
  51. 6d0b7f6 [msan] Fix sigaction test. by Evgeniy Stepanov · 11 years ago
  52. e865045 [msan] Really disable replacement new and delete. by Evgeniy Stepanov · 11 years ago
  53. 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 11 years ago
  54. 3ba4b90 [sanitizer] More syscall handler placeholders. by Evgeniy Stepanov · 11 years ago
  55. 40e1668 Finally drop the 'static' from INLINE and ALWAYS_INLINE by Timur Iskhodzhanov · 11 years ago
  56. f1faf5d [MSan] Demangle function name in description of stack origin by Alexey Samsonov · 11 years ago
  57. d10d2d7 [MSan] don't build tests with -fPIE/-pie, as these flags are implied by -fsanitize=memory now by Alexey Samsonov · 11 years ago
  58. 103f258 [TSan] remove -fPIE -pie from TSan lit tests to check that -fsanitize=thread implies them now by Alexey Samsonov · 11 years ago
  59. 16cc10d [asan] inline flags(), up to 1% perf gain on malloc-intensive code by Kostya Serebryany · 11 years ago
  60. fecbf27 [asan] make heavy_uar_test even heavier by Kostya Serebryany · 11 years ago
  61. 2a529ad Explicitly list all sanitizer headers in CMake build rules. Make sure sanitizer lit_tests depend on fresh headers. by Alexey Samsonov · 11 years ago
  62. 71c9e9e [asan] improve the UAR reporting (try harder to find the correct frame), try to make the test more stable by Kostya Serebryany · 11 years ago
  63. 2887a64 [sanitizer] Syscall hooks. by Evgeniy Stepanov · 11 years ago
  64. 37f9464 [asan] make heavy_uar_test a bit more heavy and fix he fake stack to pass this test by Kostya Serebryany · 11 years ago
  65. 61723f2 [ASan] test source-based init-order blacklisting added in r179280 by Alexey Samsonov · 11 years ago
  66. ce0f7d1 [asan] fix use-after-return functionality (PR15672) and enable the corresponding test. We still don't guarantee anything with regard to use-after-return checking by Kostya Serebryany · 11 years ago
  67. 22c1c18 [ASan] Symbolize correct address when printint error summary by Alexey Samsonov · 11 years ago
  68. 244384d [asan] move fake stack into a separate .h file; actually disable a failing test by Kostya Serebryany · 11 years ago
  69. 2c02f63 [asan] add heavy_uar_test (disabled); fix lint by Kostya Serebryany · 11 years ago
  70. 15832c2 [ASan] Do not check the shadow of NULL argument in the time() interceptor. by Alexander Potapenko · 11 years ago
  71. dc0d179 [asan] implement callbacks for unaligned loads/stores by Kostya Serebryany · 11 years ago
  72. f3f2f5c [ASan] fix a typo in legend in error report by Alexey Samsonov · 11 years ago
  73. 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 11 years ago
  74. a1c2a55 [msan] Intercept glob() with tests. by Evgeniy Stepanov · 11 years ago
  75. c9b626e [Sanitizer] fix TSan tests: remove global ctor from sanitizer_common, run load_shared_lib test only in lit by Alexey Samsonov · 11 years ago
  76. 8a6cac5 [asan] relax Linux/zero-base-shadow.cc to make it pass on newer Ubuntu; fix lint by Kostya Serebryany · 11 years ago
  77. 39fdce1 Revert r179012: "[msan] Intercept glob()." by Chandler Carruth · 11 years ago
  78. c8feb2f [libsymbolized] If we can't find an address in the list of shared libraries, try to reload it. by Alexander Potapenko · 11 years ago
  79. 134fe8a [msan] Interceptors for pipe2 and socketpair. by Evgeniy Stepanov · 11 years ago
  80. 6f4c197 [msan] Intercept glob(). by Evgeniy Stepanov · 11 years ago
  81. cc24ec9 [tsan] Fix build. by Evgeniy Stepanov · 11 years ago
  82. a2c1d98 [sanitizer] Fix boundary condition in LargeMmapAllocator::GetBlockBegin. Patch by Sergey Matveev by Kostya Serebryany · 11 years ago
  83. fef6605 [msan] Intercept time(). by Evgeniy Stepanov · 11 years ago
  84. 5ef2920 [asan] make huge_negative_hea_oob more meaningful by Kostya Serebryany · 11 years ago
  85. d26a01e [asan] add a test for huge left oob by Kostya Serebryany · 11 years ago
  86. 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
  87. cd3049d [msan] Fix sigaction interceptor. by Evgeniy Stepanov · 11 years ago
  88. a897400 [msan] Conditionally disable new() and delete() wrappers. by Evgeniy Stepanov · 11 years ago
  89. a213ab6 [msan] A runtime option to disable wrapping of signal handlers. by Evgeniy Stepanov · 11 years ago
  90. 48cab52 [Sanitizer] enquote the module name when passing it to external symbolizer by Alexey Samsonov · 11 years ago
  91. ce184c8 [ASan] init-order checker tests: move constexpr test that requires -std=c++11 to a separate test case. Check that structs with no ctor but non-trivial dtor are ignored. by Alexey Samsonov · 11 years ago
  92. 10f3ab7 Remove InternalAlloc/InternalFree calls from StopTheWorld. Patch by Sergey Matveev. by Alexey Samsonov · 11 years ago
  93. 7ed46ff [Sanitizer] Use a common mutex to prevent mixing reports from different sanitizers. This fixes PR15516 by Alexey Samsonov · 11 years ago
  94. 6a7c51d [TSan] Make path to FileCheck configurable by Alexey Samsonov · 11 years ago
  95. b1971ca [asan] nuke the old unused allocator code by Kostya Serebryany · 11 years ago
  96. 2a3619e [asan] fill first 4K of malloc-ed memory with garbage, implement flags max_malloc_fill_size and malloc_fill_byte by Kostya Serebryany · 11 years ago
  97. 4fb04a8 [sanitizer] Android lacks ucontext_t definition. by Evgeniy Stepanov · 11 years ago
  98. 0727702 [sanitizer] Use ucontext_t instead of "struct ucontext". by Evgeniy Stepanov · 11 years ago
  99. 06658ea [msan] Unpoison siginfo_t and ucontext_t in signal handlers. by Evgeniy Stepanov · 11 years ago
  100. 583025d [sanitizer] while doing fast unwinding make sure that the frame pointer is aligned; fix lint by Kostya Serebryany · 11 years ago