Skip to content
  1. Sep 21, 2018
    • Jeremy Morse's avatar
      [libfuzzer] Fix a test's run line · b52bd9ee
      Jeremy Morse authored
      r342698 removed the 'UNSUPPORTED: windows' flags from a number of fuzzer
      tests, however too many lines were removed from 'fuzzer-flags.test',
      including the run-line that generates the test binary, which breaks that
      test for me (and the clang-x64-ninja-win7 buildbot). This patch just
      re-adds that line.
      
      llvm-svn: 342720
      b52bd9ee
    • Jonathan Metzman's avatar
      [fuzzer] Replace FuzzerExtFunctionsDlsymWin.cpp with FuzzerExtFunctionsWeakAlias.cpp · 0744d3c5
      Jonathan Metzman authored
      Summary:
      Replace FuzzerExtFunctionsDlsymWin.cpp with FuzzerExtFunctionsWeakAlias.cpp
      to get externally defined functions (eg: LLVMFuzzerInitialize,
      LLVMFuzzerCustomMutator, etc) working again.
      
      Also enable tests that depended on these functions (on windows)
      
      Reviewers: rnk, morehouse
      
      Reviewed By: rnk, morehouse
      
      Subscribers: rnk, morehouse, mgorny
      
      Differential Revision: https://reviews.llvm.org/D51700
      
      llvm-svn: 342698
      0744d3c5
  2. Sep 14, 2018
  3. Sep 07, 2018
    • Jonathan Metzman's avatar
      [libfuzzer] Enable trace-malloc-unballanced.test on Windows. · 3ab0ee4d
      Jonathan Metzman authored
      Summary:
      Enables trace-malloc-unbalanced.test on Windows, fixing two problems it had with Windows before.
      The first fix is specifying python instead of relying on a script's shebang since they can't be used on Windows.
      The second fix is making the regex tolerate windows' implementation of the "%p" format string.
      
      Reviewers: Dor1s
      
      Reviewed By: Dor1s
      
      Subscribers: morehouse
      
      Differential Revision: https://reviews.llvm.org/D51760
      
      llvm-svn: 341632
      3ab0ee4d
    • Jonathan Metzman's avatar
      [libfuzzer] Use cl driver mode for tests and enable another test on Windows · 6167c4ee
      Jonathan Metzman authored
      Summary:
      When targeting MSVC: compile using clang's cl driver mode (this is needed for
      libfuzzer's exit_on_src_pos feature). Don't use -lstdc++ when linking,
      it isn't needed and causes a warning.
      On Windows: Fix exit_on_src_pos.test by making sure debug info isn't
      overwritten during compilation of second binary by using .exe extension.
      
      Reviewers: morehouse
      
      Reviewed By: morehouse
      
      Subscribers: aprantl, JDevlieghere
      
      Differential Revision: https://reviews.llvm.org/D51757
      
      llvm-svn: 341622
      6167c4ee
  4. Sep 06, 2018
  5. Sep 05, 2018
  6. Sep 04, 2018
    • Matt Morehouse's avatar
      [libFuzzer] Enable tests on Windows · 24568789
      Matt Morehouse authored
      Summary:
      Enable tests on Windows and make check-fuzzer pass on it.  Make
      check-fuzzer pass on Windows by fixing libFuzzer, fixing tests, and by
      disabling tests on Windows. Most of these are disabled temporarily as
      support for the tests and the features they test will be added
      incrementally.  Other tests will not be enabled since they require
      things that are not on Windows (eg: afl_driver tests).  Every test
      that was explicitly disabled on Windows has a comment explaining why
      (unless obvious like merge-posix.test).
      
      The lit.cfg file was modified to support running tests on windows.
      fuzzer-dirs.test was fixed by making the Windows implementation print
      the same error message as the posix version.
      merge-control-file.test was fixed by making the test binary end with
      the ".exe" extension (on all platforms).
      
      Patch By: metzman
      
      Reviewers: morehouse
      
      Reviewed By: morehouse
      
      Subscribers: srhines, mgorny
      
      Differential Revision: https://reviews.llvm.org/D51549
      
      llvm-svn: 341385
      24568789
  7. Aug 29, 2018
  8. Aug 17, 2018
  9. Aug 15, 2018
    • Matt Morehouse's avatar
      [SanitizerCoverage] Add associated metadata to PC guards. · 0f22fac2
      Matt Morehouse authored
      Summary:
      Without this metadata LLD strips unused PC table entries
      but won't strip unused guards.  This metadata also seems
      to influence the linker to change the ordering in the PC
      guard section to match that of the PC table section.
      
      The libFuzzer runtime library depends on the ordering
      of the PC table and PC guard sections being the same.  This
      is not generally guaranteed, so we may need to redesign
      PC tables/guards/counters in the future.
      
      Reviewers: eugenis
      
      Reviewed By: eugenis
      
      Subscribers: kcc, hiraditya, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D50483
      
      llvm-svn: 339733
      0f22fac2
  10. Aug 09, 2018
  11. Aug 07, 2018
  12. Aug 03, 2018
  13. Aug 02, 2018
  14. Jul 30, 2018
  15. Jul 25, 2018
  16. Jul 24, 2018
    • Max Moroz's avatar
      [libFuzzer] Handle unstable edges by disregarding unstable edges · 8db0befc
      Max Moroz authored
      Summary:
      Added a new mode within flag -handle_unstable for new unstable handling algorithm that does the following:
          When an edge is shown as unstable, copy to UnstableCounters the value 0.
          During ApplyUnstableCounters we copy back the value 0 to ModuleInline8bitCounters if the edge was unstable.
      
      This way we would be ignoring completely features that were collected through non-determinism.
      Unstable hits would be counted as if it never hit.
      
      Reviewers: metzman, Dor1s, kcc, morehouse
      
      Reviewed By: metzman, morehouse
      
      Subscribers: delcypher, llvm-commits, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D49684
      
      llvm-svn: 337853
      8db0befc
  17. Jul 23, 2018
    • Max Moroz's avatar
      [libFuzzer] Handle unstable edges by using minimum hit counts · 1e954f78
      Max Moroz authored
      Summary:
      Created unstable_handle flag that takes 1 or 2, depending on the handling type.
      Modified RunOne to accommodate the following heuristic:
          Use the first CollectFeatures to count how many features there are.
          If no new features, CollectFeatures like before.
          If there is new feature, we run CB 2 more times,
              Check which edges are unstable per input and we store the least amount of hit counts for each edge.
              Apply these hit counts back to inline8bitcounters so that CollectFeatures can work as intended.
      Modified UnstableCounters to 8int_t and created a bitset UnstableSet to tell which edges are unstable.
      
      Patch by Kyungtak Woo (@kevinwkt).
      
      Reviewers: Dor1s, metzman, morehouse
      
      Reviewed By: Dor1s, morehouse
      
      Subscribers: delcypher, #sanitizers, llvm-commits, kcc
      
      Differential Revision: https://reviews.llvm.org/D49525
      
      llvm-svn: 337696
      1e954f78
  18. Jul 20, 2018
  19. Jul 19, 2018
  20. Jul 17, 2018
  21. Jul 16, 2018
  22. Jul 13, 2018
  23. Jul 12, 2018
Loading