Skip to content
  1. Sep 26, 2017
  2. Sep 05, 2017
    • Evgeniy Stepanov's avatar
      [msan] Check sigset_t and sigaction arguments. · 8b80b328
      Evgeniy Stepanov authored
      Summary:
      Check sigset_t arguments in ppoll, sig*wait*, sigprocmask
      interceptors, and the entire "struct sigaction" in sigaction. This
      can be done because sigemptyset/sigfullset are intercepted and
      signal masks should be correctly marked as initialized.
      
      Reviewers: vitalybuka
      
      Subscribers: kubamracek, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D37367
      
      llvm-svn: 312576
      8b80b328
  3. Jul 31, 2017
    • Vitaly Buka's avatar
      [sanitizer_common] Rename SI_NOT_WINDOWS to SI_POSIX · 8c809eb7
      Vitaly Buka authored
      Summary:
      New systems might be neither Windows nor POSIX.  The SI_NOT_WINDOWS
      macro in sanitizer_platform_interceptors.h was already effectively
      the same as SI_POSIX, so just use SI_POSIX instead.
      
      Submitted on behalf of Roland McGrath.
      
      Reviewers: vitalybuka, alekseyshl, kcc
      
      Reviewed By: vitalybuka
      
      Subscribers: phosek, filcab, llvm-commits, kubamracek
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D36038
      
      llvm-svn: 309536
      8c809eb7
  4. Jul 06, 2017
  5. Jun 29, 2017
    • Reid Kleckner's avatar
      Fix WinASan after moving wcslen interceptor to sanitizer_common · 4acf36be
      Reid Kleckner authored
      Do this by removing SANITIZER_INTERCEPT_WCSLEN and intercept wcslen
      everywhere. Before this change, we were already intercepting wcslen on
      Windows, but the interceptor was in asan, not sanitizer_common. After
      this change, we stopped intercepting wcslen on Windows, which broke
      asan_dll_thunk.c, which attempts to thunk to __asan_wcslen in the ASan
      runtime.
      
      llvm-svn: 306706
      4acf36be
  6. Jun 28, 2017
  7. Jun 07, 2017
  8. Jun 01, 2017
  9. May 18, 2017
  10. May 11, 2017
  11. May 03, 2017
  12. May 02, 2017
  13. Apr 24, 2017
  14. Apr 21, 2017
    • Vitaly Buka's avatar
      [asan] Optimize strchr for strict_string_checks=false · 9703df2b
      Vitaly Buka authored
      Summary:
      strchr interceptor does not need to call strlen if strict_string_checks is not
      enabled. Unnecessary strlen calls affect python parser performance.
      
      Reviewers: eugenis, kcc
      
      Subscribers: llvm-commits, kubamracek
      
      Differential Revision: https://reviews.llvm.org/D32264
      
      llvm-svn: 301027
      9703df2b
    • Diana Picus's avatar
      Revert r300889, r300906, r300935, r300939 · 1f043e1c
      Diana Picus authored
      At least one of the ARM bots is still broken:
      Command Output (stderr):
      --
      /home/buildslave/buildslave/clang-cmake-armv7-a15-full/llvm/projects/compiler-rt/test/asan/TestCases/Posix/strchr.c:31:12: error: expected string not found in input
       // CHECK: strchr.c:[[@LINE-2]]
                 ^
      <stdin>:3:59: note: scanning from here
      ==16297==ERROR: AddressSanitizer: SEGV on unknown address 0xb5add000 (pc 0xb6dccaa4 bp 0xbe8c19c8 sp 0xbe8c1570 T0)
                                                                ^
      <stdin>:3:59: note: with expression "@LINE-2" equal to "29"
      ==16297==ERROR: AddressSanitizer: SEGV on unknown address 0xb5add000 (pc 0xb6dccaa4 bp 0xbe8c19c8 sp 0xbe8c1570 T0)
                                                                ^
      <stdin>:5:57: note: possible intended match here
       #0 0xb6dccaa3 in strlen /build/glibc-f8FFOS/glibc-2.23/string/../sysdeps/arm/armv6t2/strlen.S:82
      
      Try to fix by reverting r300889 and subsequent fixes:
      Revert "[asan] Fix test by removing "The signal is caused" check."
      Revert "[asan] Fix test on ppc64le-linux by checking "UNKNOWN memory access""
      Revert "[asan] Match BUS and SIGV to fix test on Darwin"
      Revert "[asan] Optimize strchr for strict_string_checks=false"
      
      llvm-svn: 300955
      1f043e1c
    • Kostya Serebryany's avatar
      sanitizer: fix crash with textdomain(NULL) interceptor · b2d291eb
      Kostya Serebryany authored
      Summary:
      The textdomain function accepts a NULL parameter (and should then return the
      current message domain). Add a check for this and include ASAN tests.
      
      Link: https://github.com/google/sanitizers/issues/787
      
      Reviewers: m.guseva, kcc
      
      Reviewed By: kcc
      
      Subscribers: kubamracek
      
      Differential Revision: https://reviews.llvm.org/D32318
      
      llvm-svn: 300924
      b2d291eb
  15. Apr 20, 2017
  16. Apr 12, 2017
  17. Mar 30, 2017
  18. Mar 26, 2017
    • Dmitry Vyukov's avatar
      tsan: add new mutex annotations · 8096a8c8
      Dmitry Vyukov authored
      There are several problems with the current annotations (AnnotateRWLockCreate and friends):
      - they don't fully support deadlock detection (we need a hook _before_ mutex lock)
      - they don't support insertion of random artificial delays to perturb execution (again we need a hook _before_ mutex lock)
      - they don't support setting extended mutex attributes like read/write reentrancy (only "linker init" was bolted on)
      - they don't support setting mutex attributes if a mutex don't have a "constructor" (e.g. static, Java, Go mutexes)
      - they don't ignore synchronization inside of lock/unlock operations which leads to slowdown and false negatives
      The new annotations solve of the above problems. See tsan_interface.h for the interface specification and comments.
      
      Reviewed in https://reviews.llvm.org/D31093
      
      llvm-svn: 298809
      8096a8c8
  19. Mar 23, 2017
  20. Mar 16, 2017
  21. Mar 09, 2017
  22. Mar 08, 2017
    • Francis Ricci's avatar
      Use correct function signature for strerror_r interceptor · 05048633
      Francis Ricci authored
      There are two possible return values for strerror_r:
      
      On OS X, the return value is always `int`.
      On Linux, the return value can be either `char *` or `int`, depending
      on the value of:
      `(_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE`
      
      Because OS X interceptors require a matching function signature,
      split out the two cases into separate interceptors, using the above
      information to determine the correct signature for a given build.
      
      llvm-svn: 297315
      05048633
  23. Feb 10, 2017
    • Kostya Serebryany's avatar
      s390x __tls_get_addr_internal vs. __tls_get_offset · d94ba361
      Kostya Serebryany authored
      Summary:
      Symbol __tls_get_addr_internal is a GLIBC_PRIVATE private symbol on s390{,x}, the glibc folks aren't very happy about asan using it.
      Additionally, only recent glibc versions have it, older versions just have __tls_get_offset and nothing else.
      The patch doesn't drop the __tls_get_addr_internal interception altogether, but changes it so that it calls real __tls_get_offset function instead (and much more importantly,
      that __tls_get_offset interception calls the real __tls_get_offset function).
      This way it should work also on glibc 2.18 and earlier.  See http://gcc.gnu.org/PR79341 for further details.
      
      Reviewers: kcc, koriakin
      
      Reviewed By: kcc, koriakin
      
      Subscribers: kubamracek, mehdi_amini
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D29735
      
      llvm-svn: 294790
      d94ba361
  24. Feb 01, 2017
  25. Dec 27, 2016
  26. Dec 23, 2016
  27. Dec 22, 2016
  28. Dec 15, 2016
  29. Dec 14, 2016
  30. Nov 28, 2016
  31. Nov 12, 2016
    • Vitaly Buka's avatar
      [asan] Fix strncmp and strncasecmp interceptors · c557191b
      Vitaly Buka authored
      Summary:
      In non-strict mode we will check memory access for both strings from beginning
      to either:
        1. 0-char
        2. size
        3. different chars
      
      In strict mode we will check from beginning to either:
        1. 0-char
        2. size
      
      Previously in strict mode we always checked up to the 0-char.
      
      Reviewers: kcc, eugenis
      
      Subscribers: llvm-commits, kubabrecka
      
      Differential Revision: https://reviews.llvm.org/D26574
      
      llvm-svn: 286708
      c557191b
  32. Oct 22, 2016
  33. Sep 10, 2016
Loading