Skip to content
  1. May 06, 2013
  2. Apr 11, 2013
  3. Apr 10, 2013
  4. Apr 05, 2013
  5. Apr 01, 2013
  6. Mar 27, 2013
  7. Mar 26, 2013
  8. Mar 22, 2013
    • Kostya Serebryany's avatar
      [asan] Change the way we report the alloca frame on stack-buff-overflow. · 667a34a1
      Kostya Serebryany authored
      Before: the function name was stored by the compiler as a constant string
      and the run-time was printing it.
      Now: the PC is stored instead and the run-time prints the full symbolized frame.
      This adds a couple of instructions into every function with non-empty stack frame,
      but also reduces the binary size because we store less strings (I saw 2% size reduction).
      This change bumps the asan ABI version to v3.
      
      compiler-rt part, llvm part will follow.
      
      Example of report (now):
      ==31711==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fffa77cf1c5 at pc 0x41feb0 bp 0x7fffa77cefb0 sp 0x7fffa77cefa8
      READ of size 1 at 0x7fffa77cf1c5 thread T0
          #0 0x41feaf in Frame0(int, char*, char*, char*) stack-oob-frames.cc:20
          #1 0x41f7ff in Frame1(int, char*, char*) stack-oob-frames.cc:24
          #2 0x41f477 in Frame2(int, char*) stack-oob-frames.cc:28
          #3 0x41f194 in Frame3(int) stack-oob-frames.cc:32
          #4 0x41eee0 in main stack-oob-frames.cc:38
          #5 0x7f0c5566f76c (/lib/x86_64-linux-gnu/libc.so.6+0x2176c)
          #6 0x41eb1c (/usr/local/google/kcc/llvm_cmake/a.out+0x41eb1c)
      Address 0x7fffa77cf1c5 is located in stack of thread T0 at offset 293 in frame
          #0 0x41f87f in Frame0(int, char*, char*, char*) stack-oob-frames.cc:12  <<<<<<<<<<<<<< this is new
        This frame has 6 object(s):
          [32, 36) 'frame.addr'
          [96, 104) 'a.addr'
          [160, 168) 'b.addr'
          [224, 232) 'c.addr'
          [288, 292) 's'
          [352, 360) 'd'
      
      llvm-svn: 177723
      667a34a1
  9. Mar 21, 2013
  10. Mar 20, 2013
  11. Mar 18, 2013
  12. Feb 20, 2013
  13. Feb 06, 2013
  14. Feb 05, 2013
  15. Jan 28, 2013
  16. Jan 23, 2013
  17. Dec 29, 2012
  18. Dec 26, 2012
  19. Dec 21, 2012
  20. Dec 20, 2012
  21. Dec 19, 2012
  22. Dec 18, 2012
  23. Dec 13, 2012
  24. Dec 07, 2012
  25. Dec 04, 2012
  26. Nov 23, 2012
  27. Nov 21, 2012
  28. Nov 19, 2012
  29. Nov 15, 2012
  30. Oct 15, 2012
  31. Oct 02, 2012
  32. Sep 18, 2012
  33. Sep 17, 2012
  34. Sep 11, 2012
    • Chandler Carruth's avatar
      Revert r163411 based on review discussion. · b156b56a
      Chandler Carruth authored
      In code review, it looked like these warnings do not actually fire with
      modern Clang or GCC. However, the pragma is flat out rejected by GCC in
      many configurations (-Werror) so it ended up causing more problems than
      it fixed.
      
      Daniel agreed with reverting this, but I think didn't have time to get
      to it.
      
      llvm-svn: 163583
      b156b56a
  35. Sep 07, 2012
  36. Sep 05, 2012
  37. Aug 28, 2012
Loading