Skip to content
  1. Jul 10, 2020
  2. Jul 09, 2020
  3. Jul 08, 2020
  4. Jul 07, 2020
    • Dan Liew's avatar
      Revert "Temporarily disable the following failing tests on Darwin:" · 8a8d6e2b
      Dan Liew authored
      This reverts commit f3a08950.
      
      888951aa introduced a fix that
      should make the disabled tests work again.
      
      rdar://problem/62141412
      8a8d6e2b
    • Dan Liew's avatar
      Disable interception of sigaltstack on i386 macOS. · 888951aa
      Dan Liew authored
      Summary:
      28c91219 introduced an interceptor for `sigaltstack`. It turns out this
      broke `setjmp` on i386 macOS. This is because the implementation of `setjmp` on
      i386 macOS is written in assembly and makes the assumption that the call to
      `sigaltstack` does not clobber any registers.  Presumably that assumption was
      made because it's a system call.  In particular `setjmp`  assumes that before
      and after the call that `%ecx` will contain a pointer the `jmp_buf`. The
      current interceptor breaks this assumption because it's written in C++ and
      `%ecx` is not a callee-saved register. This could be fixed by writing a
      trampoline interceptor to the existing interceptor in assembly that
      ensures all the registers are preserved. However, this is a lot of work
      for very little gain. Instead this patch just disables the interceptor
      on i386 macOS.
      
      For other Darwin architectures it currently appears to be safe to intercept
      `sigaltstack` using the current implementation because:
      
      * `setjmp` for x86_64 saves the pointer `jmp_buf` to the stack before calling `sigaltstack`.
      * `setjmp` for armv7/arm64/arm64_32/arm64e appears to not call `sigaltstack` at all.
      
      This patch should unbreak (once they are re-enabled) the following
      tests:
      
      ```
      AddressSanitizer-Unit :: ./Asan-i386-calls-Test/AddressSanitizer.LongJmpTest
      AddressSanitizer-Unit :: ./Asan-i386-calls-Test/AddressSanitizer.SigLongJmpTest
      AddressSanitizer-Unit :: ./Asan-i386-inline-Test/AddressSanitizer.LongJmpTest
      AddressSanitizer-Unit :: ./Asan-i386-inline-Test/AddressSanitizer.SigLongJmpTest
      AddressSanitizer-i386-darwin :: TestCases/longjmp.cpp
      ```
      
      This patch introduces a `SANITIZER_I386` macro for convenience.
      
      rdar://problem/62141412
      
      Reviewers: kubamracek, yln, eugenis
      
      Subscribers: kristof.beyls, #sanitizers, llvm-commits
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D82691
      888951aa
  5. Jul 06, 2020
  6. Jul 02, 2020
  7. Jul 01, 2020
  8. Jun 30, 2020
  9. Jun 26, 2020
  10. Jun 25, 2020
  11. Jun 24, 2020
    • Vitaly Buka's avatar
      Add option to symbolize inline frames for InternalSymbolizer · 8df3e1fd
      Vitaly Buka authored
      Summary:
      Currently, there is no way to let the `InternalSymbolizer` implemented
      functions know if inline frames should be symbolized. This patch updates
      the function `__sanitizer_symbolize_code` to include a parameter for
      this ASAN option and toggle between LLVM symbolization functions when
      appropriate.
      
      Fixes the following two failing tests when internal symbolization is
      enabled:
      ```
      SanitizerCommon-*-x86_64-Linux :: print-stack-trace.cpp
      SanitizerCommon-*-x86_64-Linux :: symbolize_pc_inline.cpp
      ```
      
      Reviewers: vitalybuka, kcc, filcab
      
      Reviewed By: vitalybuka
      
      Subscribers: #sanitizers
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D79280
      8df3e1fd
  12. Jun 22, 2020
  13. Jun 21, 2020
  14. Jun 20, 2020
  15. Jun 19, 2020
  16. Jun 18, 2020
    • Christopher Ferris's avatar
      [scudo][standalone] Allow Primary allocations to fail up multiple times. · e7ac984d
      Christopher Ferris authored
      Summary:
      When enabling some malloc debug features on Android, multiple 32 bit
      regions become exhausted, and the allocations fail. Allow allocations
      to keep trying each bigger class in the Primary until it finds a fit.
      In addition, some Android tests running on 32 bit fail sometimes due
      to a running out of space in two regions, and then fail the allocation.
      
      Reviewers: cryptoad
      
      Reviewed By: cryptoad
      
      Subscribers: #sanitizers, llvm-commits
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D82070
      e7ac984d
  17. Jun 17, 2020
    • Ian Levesque's avatar
      [xray] Option to omit the function index · 7c7c8e0d
      Ian Levesque authored
      Summary:
      Add a flag to omit the xray_fn_idx to cut size overhead and relocations
      roughly in half at the cost of reduced performance for single function
      patching.  Minor additions to compiler-rt support per-function patching
      without the index.
      
      Reviewers: dberris, MaskRay, johnislarry
      
      Subscribers: hiraditya, arphaman, cfe-commits, #sanitizers, llvm-commits
      
      Tags: #clang, #sanitizers, #llvm
      
      Differential Revision: https://reviews.llvm.org/D81995
      7c7c8e0d
  18. Jun 16, 2020
    • David Tenty's avatar
      [AIX][compiler-rt] Pick the right form of COMPILER_RT_ALIAS for AIX · 8aef01ee
      David Tenty authored
      Summary: we use the alias attribute, similar to what is done for ELF.
      
      Reviewers: ZarkoCA, jasonliu, hubert.reinterpretcast, sfertile
      
      Reviewed By: jasonliu
      
      Subscribers: dberris, aheejin, mstorsjo, #sanitizers
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D81120
      8aef01ee
    • Ilya Leoshkevich's avatar
      [LSan] Enable for SystemZ · ccd8b7b1
      Ilya Leoshkevich authored
      Summary: Add runtime support, adjust the tests and enable LSan.
      
      Reviewers: vitalybuka, eugenis, uweigand, jonpa
      
      Reviewed By: uweigand
      
      Subscribers: mgorny, cfe-commits, #sanitizers
      
      Tags: #clang, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D78644
      ccd8b7b1
    • Vitaly Buka's avatar
      [asan] Unpoison signal alternate stack. · 6b4aeec9
      Vitaly Buka authored
      Summary:
      Before unwinding the stack, `__asan_handle_no_return` is supposed to
      unpoison the entire stack - that is, remove the entries in the shadow
      memory corresponding to stack (e.g. redzone markers around variables).
      This does not work correctly if `__asan_handle_no_return` is called from
      the alternate stack used in signal handlers, because the stack top is
      read from a cache, which yields the default stack top instead of the
      signal alternate stack top.
      
      It is also possible to jump between the default stack and the signal
      alternate stack. Therefore, __asan_handle_no_return needs to unpoison
      both.
      
      Reviewers: vitalybuka, kubamracek, kcc, eugenis
      
      Reviewed By: vitalybuka
      
      Subscribers: phosek, #sanitizers
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D76986
      6b4aeec9
    • Robert Schneider's avatar
      [asan] Refactor stack unpoisoning. · 387e94ca
      Robert Schneider authored
      Summary: This adds a customization point to support unpoisoning of signal alternate stacks on POSIX.
      
      Reviewers: vitalybuka
      
      Reviewed By: vitalybuka
      
      Subscribers: #sanitizers
      
      Tags: #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D81577
      387e94ca
    • Gui Andrade's avatar
      [MSAN] Pass Origin by parameter to __msan_warning functions · b0ffa8be
      Gui Andrade authored
      Summary:
      Normally, the Origin is passed over TLS, which seems like it introduces unnecessary overhead. It's in the (extremely) cold path though, so the only overhead is in code size.
      
      But with eager-checks, calls to __msan_warning functions are extremely common, so this becomes a useful optimization.
      
      This can save ~5% code size.
      
      Reviewers: eugenis, vitalybuka
      
      Reviewed By: eugenis, vitalybuka
      
      Subscribers: hiraditya, #sanitizers, llvm-commits
      
      Tags: #sanitizers, #llvm
      
      Differential Revision: https://reviews.llvm.org/D81700
      b0ffa8be
  19. Jun 15, 2020
  20. Jun 13, 2020
    • Craig Topper's avatar
      [X86] Remove brand_id check from cpu_indicator_init. · 033bf61c
      Craig Topper authored
      Brand index was a feature some Pentium III and Pentium 4 CPUs.
      It provided an index into a software lookup table to provide a
      brand name for the CPU. This is separate from the family/model.
      
      It's unclear to me why this index being non-zero was used to
      block checking family/model. None of the CPUs that had a non-zero
      brand index are supported by __builtin_cpu_is or target
      multi-versioning so this should have no real effect.
      033bf61c
    • Craig Topper's avatar
      [X86] Combine to two feature variables in __cpu_indicator_init into an array... · 94ccb2ac
      Craig Topper authored
      [X86] Combine to two feature variables in __cpu_indicator_init into an array and pass them around as pointer we can treat as an array.
      
      This simplifies the indexing code to set and test bits.
      94ccb2ac
Loading