aboutsummaryrefslogtreecommitdiffhomepage
path: root/fuzz
diff options
context:
space:
mode:
authorGravatar Kevin Lubick <kjlubick@google.com>2018-04-23 16:44:55 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-24 14:48:37 +0000
commitfffa6418966ed24378c4046afc7527841adf2fa4 (patch)
treeff89bd4d966f91d4a613d0eb1db5bb627d6f9389 /fuzz
parentf50c283f0b5344ee00f564db362e7b3c41896f92 (diff)
Make fuzz autodetect file names
e.g. out/ASAN/fuzz -b /path/to/file Bug: skia: Change-Id: I6df370a7f83e8ea8fc8c2dec20834620bc726911 Reviewed-on: https://skia-review.googlesource.com/122901 Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzz.cpp247
1 files changed, 163 insertions, 84 deletions
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp
index d75d658d22..29a70e2f6c 100644
--- a/fuzz/fuzz.cpp
+++ b/fuzz/fuzz.cpp
@@ -29,6 +29,7 @@
#endif
#include <iostream>
+#include <regex>
#include <signal.h>
#include "sk_tool_utils.h"
@@ -58,10 +59,11 @@ DEFINE_string2(type, t, "", "How to interpret --bytes, one of:\n"
"sksl2glsl\n"
"textblob");
-static int fuzz_file(const char* path);
+static int fuzz_file(SkString path, SkString type);
static uint8_t calculate_option(SkData*);
+static SkString try_auto_detect(SkString path, SkString* name);
-static void fuzz_api(sk_sp<SkData>);
+static void fuzz_api(sk_sp<SkData> bytes, SkString name);
static void fuzz_color_deserialize(sk_sp<SkData>);
static void fuzz_filter_fuzz(sk_sp<SkData>);
static void fuzz_icc(sk_sp<SkData>);
@@ -75,26 +77,31 @@ static void fuzz_skp(sk_sp<SkData>);
static void fuzz_skpipe(sk_sp<SkData>);
static void fuzz_textblob_deserialize(sk_sp<SkData>);
+static void print_api_names();
+
#if SK_SUPPORT_GPU
static void fuzz_sksl2glsl(sk_sp<SkData>);
#endif
int main(int argc, char** argv) {
SkCommandLineFlags::SetUsage("Usage: fuzz -t <type> -b <path/to/file> [-n api-to-fuzz]\n"
- "--help lists the valid types\n");
+ " fuzz -b <path/to/file>\n"
+ "--help lists the valid types. If type is not specified,\n"
+ "fuzz will make a guess based on the name of the file.\n");
SkCommandLineFlags::Parse(argc, argv);
- const char* path = FLAGS_bytes.isEmpty() ? argv[0] : FLAGS_bytes[0];
+ SkString path = SkString(FLAGS_bytes.isEmpty() ? argv[0] : FLAGS_bytes[0]);
+ SkString type = SkString(FLAGS_type.isEmpty() ? "" : FLAGS_type[0]);
- if (!sk_isdir(path)) {
- return fuzz_file(path);
+ if (!sk_isdir(path.c_str())) {
+ return fuzz_file(path, type);
}
- SkOSFile::Iter it(path);
+ SkOSFile::Iter it(path.c_str());
for (SkString file; it.next(&file); ) {
- SkString p = SkOSPath::Join(path, file.c_str());
+ SkString p = SkOSPath::Join(path.c_str(), file.c_str());
SkDebugf("Fuzzing %s\n", p.c_str());
- int rv = fuzz_file(p.c_str());
+ int rv = fuzz_file(p, type);
if (rv != 0) {
return rv;
}
@@ -102,83 +109,153 @@ int main(int argc, char** argv) {
return 0;
}
-static int fuzz_file(const char* path) {
- sk_sp<SkData> bytes(SkData::MakeFromFileName(path));
+static int fuzz_file(SkString path, SkString type) {
+ sk_sp<SkData> bytes(SkData::MakeFromFileName(path.c_str()));
if (!bytes) {
- SkDebugf("Could not read %s\n", path);
+ SkDebugf("Could not read %s\n", path.c_str());
return 1;
}
- if (!FLAGS_type.isEmpty()) {
- if (0 == strcmp("animated_image_decode", FLAGS_type[0])) {
- fuzz_animated_img(bytes);
- return 0;
- }
- if (0 == strcmp("api", FLAGS_type[0])) {
- fuzz_api(bytes);
- return 0;
- }
- if (0 == strcmp("color_deserialize", FLAGS_type[0])) {
- fuzz_color_deserialize(bytes);
- return 0;
- }
- if (0 == strcmp("icc", FLAGS_type[0])) {
- fuzz_icc(bytes);
- return 0;
- }
- if (0 == strcmp("image_decode", FLAGS_type[0])) {
- fuzz_img2(bytes);
- return 0;
- }
- if (0 == strcmp("image_scale", FLAGS_type[0])) {
- uint8_t option = calculate_option(bytes.get());
- fuzz_img(bytes, option, 0);
- return 0;
- }
- if (0 == strcmp("image_mode", FLAGS_type[0])) {
- uint8_t option = calculate_option(bytes.get());
- fuzz_img(bytes, 0, option);
- return 0;
- }
- if (0 == strcmp("path_deserialize", FLAGS_type[0])) {
- fuzz_path_deserialize(bytes);
- return 0;
- }
- if (0 == strcmp("region_deserialize", FLAGS_type[0])) {
- fuzz_region_deserialize(bytes);
- return 0;
- }
- if (0 == strcmp("region_set_path", FLAGS_type[0])) {
- fuzz_region_set_path(bytes);
- return 0;
- }
- if (0 == strcmp("pipe", FLAGS_type[0])) {
- fuzz_skpipe(bytes);
- return 0;
- }
- if (0 == strcmp("skp", FLAGS_type[0])) {
- fuzz_skp(bytes);
- return 0;
- }
- if (0 == strcmp("filter_fuzz", FLAGS_type[0])) {
- fuzz_filter_fuzz(bytes);
- return 0;
- }
- if (0 == strcmp("textblob", FLAGS_type[0])) {
- fuzz_textblob_deserialize(bytes);
- return 0;
- }
+ SkString name = SkString(FLAGS_name.isEmpty() ? "" : FLAGS_name[0]);
+
+ if (type.isEmpty()) {
+ type = try_auto_detect(path, &name);
+ }
+
+ if (type.isEmpty()) {
+ SkDebugf("Could not autodetect type of %s\n", path.c_str());
+ return 1;
+ }
+
+ if (type.equals("animated_image_decode")) {
+ fuzz_animated_img(bytes);
+ return 0;
+ }
+ if (type.equals("api")) {
+ fuzz_api(bytes, name);
+ return 0;
+ }
+ if (type.equals("color_deserialize")) {
+ fuzz_color_deserialize(bytes);
+ return 0;
+ }
+ if (type.equals("icc")) {
+ fuzz_icc(bytes);
+ return 0;
+ }
+ if (type.equals("image_decode")) {
+ fuzz_img2(bytes);
+ return 0;
+ }
+ if (type.equals("image_scale")) {
+ uint8_t option = calculate_option(bytes.get());
+ fuzz_img(bytes, option, 0);
+ return 0;
+ }
+ if (type.equals("image_mode")) {
+ uint8_t option = calculate_option(bytes.get());
+ fuzz_img(bytes, 0, option);
+ return 0;
+ }
+ if (type.equals("path_deserialize")) {
+ fuzz_path_deserialize(bytes);
+ return 0;
+ }
+ if (type.equals("region_deserialize")) {
+ fuzz_region_deserialize(bytes);
+ return 0;
+ }
+ if (type.equals("region_set_path")) {
+ fuzz_region_set_path(bytes);
+ return 0;
+ }
+ if (type.equals("pipe")) {
+ fuzz_skpipe(bytes);
+ return 0;
+ }
+ if (type.equals("skp")) {
+ fuzz_skp(bytes);
+ return 0;
+ }
+ if (type.equals("filter_fuzz")) {
+ fuzz_filter_fuzz(bytes);
+ return 0;
+ }
+ if (type.equals("textblob")) {
+ fuzz_textblob_deserialize(bytes);
+ return 0;
+ }
#if SK_SUPPORT_GPU
- if (0 == strcmp("sksl2glsl", FLAGS_type[0])) {
- fuzz_sksl2glsl(bytes);
- return 0;
- }
-#endif
+ if (type.equals("sksl2glsl")) {
+ fuzz_sksl2glsl(bytes);
+ return 0;
}
+#endif
+ SkDebugf("Unknown type %s\n");
SkCommandLineFlags::PrintUsage();
return 1;
}
+static std::map<std::string, std::string> cf_api_map = {
+ {"api_draw_functions", "DrawFunctions"},
+ {"api_gradients", "Gradients"},
+ {"api_image_filter", "ImageFilter"},
+ {"api_mock_gpu_canvas", "MockGPUCanvas"},
+ {"api_null_canvas", "NullCanvas"},
+ {"api_path_measure", "PathMeasure"},
+ {"api_raster_n32_canvas", "RasterN32Canvas"},
+ {"jpeg_encoder", "JPEGEncoder"},
+ {"png_encoder", "PNGEncoder"},
+ {"webp_encoder", "WEBPEncoder"}
+};
+
+static std::map<std::string, std::string> cf_map = {
+ {"animated_image_decode", "animated_image_decode"},
+ {"image_decode", "image_decode"},
+ {"image_filter_deserialize", "filter_fuzz"},
+ {"image_filter_deserialize_width", "filter_fuzz"},
+ {"path_deserialize", "path_deserialize"},
+ {"region_deserialize", "region_deserialize"},
+ {"region_set_path", "region_set_path"},
+ {"textblob_deserialize", "textblob"}
+};
+
+static SkString try_auto_detect(SkString path, SkString* name) {
+ std::cmatch m;
+ std::regex clusterfuzz("clusterfuzz-testcase(-minimized)?-([a-z0-9_]+)-[\\d]+");
+ std::regex skiafuzzer("(api-)?(\\w+)-[a-f0-9]+");
+
+ if (std::regex_search(path.c_str(), m, clusterfuzz)) {
+ std::string type = m.str(2);
+ if (type.find("api_") != std::string::npos || type.find("_encoder") != std::string::npos) {
+ if (cf_api_map.find(type) != cf_api_map.end()) {
+ *name = SkString(cf_api_map[type].c_str()); //probably wrong
+ return SkString("api");
+ } else {
+ SkDebugf("Unrecognized api name %s\n", type.c_str());
+ print_api_names();
+ return SkString("");
+ }
+ } else {
+ if (cf_map.find(type) != cf_map.end()) {
+ return SkString(cf_map[type].c_str());
+ }
+ }
+ } else if (std::regex_search(path.c_str(), m, skiafuzzer)) {
+ std::string a1 = m.str(1);
+ std::string typeOrName = m.str(2);
+ if (a1.length() > 0) {
+ // it's an api fuzzer
+ *name = SkString(typeOrName.c_str());
+ return SkString("api");
+ } else {
+ return SkString(typeOrName.c_str());
+ }
+ }
+
+ return SkString("");
+}
+
// This adds up the first 1024 bytes and returns it as an 8 bit integer. This allows afl-fuzz to
// deterministically excercise different paths, or *options* (such as different scaling sizes or
// different image modes) without needing to introduce a parameter. This way we don't need a
@@ -193,12 +270,18 @@ static uint8_t calculate_option(SkData* bytes) {
return total;
}
-static void fuzz_api(sk_sp<SkData> bytes) {
- const char* name = FLAGS_name.isEmpty() ? "" : FLAGS_name[0];
+static void print_api_names(){
+ SkDebugf("When using --type api, please choose an API to fuzz with --name/-n:\n");
+ for (auto r = sk_tools::Registry<Fuzzable>::Head(); r; r = r->next()) {
+ auto fuzzable = r->factory();
+ SkDebugf("\t%s\n", fuzzable.name);
+ }
+}
+static void fuzz_api(sk_sp<SkData> bytes, SkString name) {
for (auto r = sk_tools::Registry<Fuzzable>::Head(); r; r = r->next()) {
auto fuzzable = r->factory();
- if (0 == strcmp(name, fuzzable.name)) {
+ if (name.equals(fuzzable.name)) {
SkDebugf("Fuzzing %s...\n", fuzzable.name);
Fuzz fuzz(std::move(bytes));
fuzzable.fn(&fuzz);
@@ -207,11 +290,7 @@ static void fuzz_api(sk_sp<SkData> bytes) {
}
}
- SkDebugf("When using --type api, please choose an API to fuzz with --name/-n:\n");
- for (auto r = sk_tools::Registry<Fuzzable>::Head(); r; r = r->next()) {
- auto fuzzable = r->factory();
- SkDebugf("\t%s\n", fuzzable.name);
- }
+ print_api_names();
}
static void dump_png(SkBitmap bitmap) {