Skip to content
  1. Jun 07, 2017
  2. Jun 01, 2017
  3. May 18, 2017
  4. May 11, 2017
  5. May 03, 2017
  6. May 02, 2017
  7. Apr 24, 2017
  8. 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
  9. Apr 20, 2017
  10. Apr 12, 2017
  11. Mar 30, 2017
  12. 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
  13. Mar 23, 2017
  14. Mar 16, 2017
  15. Mar 09, 2017
  16. 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
  17. 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
  18. Feb 01, 2017
  19. Dec 27, 2016
  20. Dec 23, 2016
  21. Dec 22, 2016
  22. Dec 15, 2016
  23. Dec 14, 2016
  24. Nov 28, 2016
  25. 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
  26. Oct 22, 2016
  27. Sep 10, 2016
  28. Jul 27, 2016
    • Etienne Bergeron's avatar
      [compiler-rt] Fix warnings in interception code · 8c6eb156
      Etienne Bergeron authored
      Summary:
      This patch is re-introducing the code to fix the
      dynamic hooking on windows and to fix a compiler
      warning on Apple.
      
      Related patches:
      
      * https://reviews.llvm.org/D22641
      * https://reviews.llvm.org/D22610
      * https://reviews.llvm.org/rL276311
      * https://reviews.llvm.org/rL276490
      
      Both architecture are using different techniques to
      hook on library functions (memchr, strcpy,...). 
      
      On Apple, the function is not dynamically hooked and
      the symbol always points to a valid function 
      (i.e. can't be null). The REAL macro returns the
      symbol.
      
      On windows, the function is dynamically patch and the
      REAL(...) function may or may not be null. It depend
      on whether or not the function was hooked correctly.
      Also, on windows memcpy and memmove are the same.
      
      ```
      #if !defined(__APPLE__)
      [...]
      # define REAL(x) __interception::PTR_TO_REAL(x)
      # define ASSIGN_REAL(dst, src) REAL(dst) = REAL(src)
      [...]
      #else  // __APPLE__
      [...]
      # define REAL(x) x
      # define ASSIGN_REAL(x, y)
      [...]
      #endif  // __APPLE__
      
      Reviewers: rnk
      
      Subscribers: kcc, hans, kubabrecka, llvm-commits, bruno, chrisha
      
      Differential Revision: https://reviews.llvm.org/D22758
      
      llvm-svn: 276885
      8c6eb156
  29. Jul 24, 2016
  30. Jul 21, 2016
  31. Jul 19, 2016
  32. Jul 15, 2016
Loading