Update SkPath utilities to use SkPathBuilder The versions of these functions which take SkPath as a destination are deprecated. Instead use the versions which take SkPathBuilder. Change-Id: If7bf3baffc05e1a62130b8b67ba2e3a16050b83f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7504975 Reviewed-by: Colin Blundell <[email protected]> Commit-Queue: Ben Wagner <[email protected]> Reviewed-by: Ben Pastene <[email protected]> Auto-Submit: Ben Wagner <[email protected]> Cr-Commit-Position: refs/heads/main@{#1572959} NOKEYCHECK=True GitOrigin-RevId: 8072f176cb3ef93a45c714296eb40921f6808b4a
Fuzzing is a testing technique that feeds auto-generated inputs to a piece of target code in an attempt to crash the code. It's one of the most effective methods we have for finding security and stability issues (see go/fuzzing-success). You can learn more about the benefits of fuzzing at go/why-fuzz.
This documentation covers the in-process guided fuzzing approach employed by different fuzzing engines, such as libFuzzer or [AFL]. To learn more about out-of-process fuzzers, please refer to the Blackbox fuzzing page in the ClusterFuzz documentation.
In Chromium, you can easily create and submit fuzz targets. The targets are automatically discovered by buildbots, built with different fuzzing engines, then uploaded to the distributed ClusterFuzz fuzzing system to run at scale.
You should fuzz any code which absorbs inputs from untrusted sources, such as the web. If the code parses, decodes, or otherwise manipulates that input, it's an especially good idea to fuzz it.
Create your first fuzz target and submit it by stepping through our Getting Started Guide.
Creating a fuzz target that expects a protobuf instead of a byte stream as input.
Reproducing bugs found by libFuzzer/AFL and reported by ClusterFuzz.
Fuzzing mojo interfaces using automatically generated libprotobuf-mutator fuzzers.