mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "Fuzz.h" |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 9 | #include "SkCanvas.h" |
| 10 | #include "SkCodec.h" |
mtklein | f5e9782 | 2016-01-15 06:19:53 -0800 | [diff] [blame] | 11 | #include "SkCommandLineFlags.h" |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 12 | #include "SkData.h" |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 13 | #include "SkImage.h" |
| 14 | #include "SkImageEncoder.h" |
| 15 | #include "SkMallocPixelRef.h" |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 16 | #include "SkOSFile.h" |
| 17 | #include "SkOSPath.h" |
Herb Derby | a839fc0 | 2017-03-16 12:30:43 -0400 | [diff] [blame] | 18 | #include "SkPaint.h" |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 19 | #include "SkPath.h" |
Cary Clark | efd99cc | 2018-06-11 16:25:43 -0400 | [diff] [blame] | 20 | #include "SkPicturePriv.h" |
Mike Reed | fadbfcd | 2017-12-06 16:09:20 -0500 | [diff] [blame] | 21 | #include "SkReadBuffer.h" |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 22 | #include "SkStream.h" |
| 23 | #include "SkSurface.h" |
Kevin Lubick | d46e85f | 2017-11-21 17:13:35 -0500 | [diff] [blame] | 24 | #include "SkTextBlob.h" |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 25 | |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 26 | #if SK_SUPPORT_GPU |
kjlubick | e719577 | 2016-10-18 10:06:24 -0700 | [diff] [blame] | 27 | #include "SkSLCompiler.h" |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 28 | #endif |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 29 | |
Hal Canary | 8a00144 | 2018-09-19 11:31:27 -0400 | [diff] [blame] | 30 | #include "sk_tool_utils.h" |
| 31 | |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 32 | #include <iostream> |
Kevin Lubick | acd456a | 2018-04-24 13:58:16 -0400 | [diff] [blame] | 33 | #include <map> |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 34 | #include <regex> |
mtklein | a115942 | 2016-01-15 05:46:54 -0800 | [diff] [blame] | 35 | #include <signal.h> |
Kevin Lubick | 2541edf | 2018-01-11 10:27:14 -0500 | [diff] [blame] | 36 | |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 37 | DEFINE_string2(bytes, b, "", "A path to a file or a directory. If a file, the " |
| 38 | "contents will be used as the fuzz bytes. If a directory, all files " |
| 39 | "in the directory will be used as fuzz bytes for the fuzzer, one at a " |
| 40 | "time."); |
mtklein | d4387ea | 2016-01-21 06:13:52 -0800 | [diff] [blame] | 41 | DEFINE_string2(name, n, "", "If --type is 'api', fuzz the API with this name."); |
Hal Canary | 62176db | 2017-02-27 16:42:03 -0500 | [diff] [blame] | 42 | DEFINE_string2(dump, d, "", "If not empty, dump 'image*' or 'skp' types as a " |
| 43 | "PNG with this name."); |
Kevin Lubick | 9ff5dc9 | 2018-01-09 12:47:33 -0500 | [diff] [blame] | 44 | DEFINE_bool2(verbose, v, false, "Print more information while fuzzing."); |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 45 | |
| 46 | // This cannot be inlined in DEFINE_string2 due to interleaved ifdefs |
| 47 | static constexpr char g_type_message[] = "How to interpret --bytes, one of:\n" |
| 48 | "animated_image_decode\n" |
| 49 | "api\n" |
| 50 | "color_deserialize\n" |
| 51 | "filter_fuzz (equivalent to Chrome's filter_fuzz_stub)\n" |
| 52 | "image_decode\n" |
| 53 | "image_mode\n" |
| 54 | "image_scale\n" |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 55 | "json\n" |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 56 | "path_deserialize\n" |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 57 | "region_deserialize\n" |
| 58 | "region_set_path\n" |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 59 | "skp\n" |
| 60 | "sksl2glsl\n" |
| 61 | #if defined(SK_ENABLE_SKOTTIE) |
| 62 | "skottie_json\n" |
| 63 | #endif |
| 64 | "textblob"; |
| 65 | |
| 66 | DEFINE_string2(type, t, "", g_type_message); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 67 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 68 | static int fuzz_file(SkString path, SkString type); |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 69 | static uint8_t calculate_option(SkData*); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 70 | static SkString try_auto_detect(SkString path, SkString* name); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 71 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 72 | static void fuzz_api(sk_sp<SkData> bytes, SkString name); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 73 | static void fuzz_color_deserialize(sk_sp<SkData>); |
Kevin Lubick | d46e85f | 2017-11-21 17:13:35 -0500 | [diff] [blame] | 74 | static void fuzz_filter_fuzz(sk_sp<SkData>); |
Kevin Lubick | 2416f96 | 2018-02-12 08:26:39 -0500 | [diff] [blame] | 75 | static void fuzz_img2(sk_sp<SkData>); |
| 76 | static void fuzz_animated_img(sk_sp<SkData>); |
Kevin Lubick | 0168e04 | 2017-02-14 13:12:37 -0500 | [diff] [blame] | 77 | static void fuzz_img(sk_sp<SkData>, uint8_t, uint8_t); |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 78 | static void fuzz_json(sk_sp<SkData>); |
Kevin Lubick | f04c50a | 2017-01-06 13:48:19 -0500 | [diff] [blame] | 79 | static void fuzz_path_deserialize(sk_sp<SkData>); |
Kevin Lubick | edee1ae | 2017-02-20 17:47:18 -0500 | [diff] [blame] | 80 | static void fuzz_region_deserialize(sk_sp<SkData>); |
Kevin Lubick | 2541edf | 2018-01-11 10:27:14 -0500 | [diff] [blame] | 81 | static void fuzz_region_set_path(sk_sp<SkData>); |
Kevin Lubick | 0168e04 | 2017-02-14 13:12:37 -0500 | [diff] [blame] | 82 | static void fuzz_skp(sk_sp<SkData>); |
Kevin Lubick | d46e85f | 2017-11-21 17:13:35 -0500 | [diff] [blame] | 83 | static void fuzz_textblob_deserialize(sk_sp<SkData>); |
Herb Derby | a839fc0 | 2017-03-16 12:30:43 -0400 | [diff] [blame] | 84 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 85 | static void print_api_names(); |
| 86 | |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 87 | #if SK_SUPPORT_GPU |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 88 | static void fuzz_sksl2glsl(sk_sp<SkData>); |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 89 | #endif |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 90 | |
Florin Malita | 0b0d93d | 2018-05-04 15:01:03 -0400 | [diff] [blame] | 91 | #if defined(SK_ENABLE_SKOTTIE) |
| 92 | static void fuzz_skottie_json(sk_sp<SkData>); |
| 93 | #endif |
| 94 | |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 95 | int main(int argc, char** argv) { |
Kevin Lubick | 9ff5dc9 | 2018-01-09 12:47:33 -0500 | [diff] [blame] | 96 | SkCommandLineFlags::SetUsage("Usage: fuzz -t <type> -b <path/to/file> [-n api-to-fuzz]\n" |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 97 | " fuzz -b <path/to/file>\n" |
| 98 | "--help lists the valid types. If type is not specified,\n" |
| 99 | "fuzz will make a guess based on the name of the file.\n"); |
mtklein | f5e9782 | 2016-01-15 06:19:53 -0800 | [diff] [blame] | 100 | SkCommandLineFlags::Parse(argc, argv); |
| 101 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 102 | SkString path = SkString(FLAGS_bytes.isEmpty() ? argv[0] : FLAGS_bytes[0]); |
| 103 | SkString type = SkString(FLAGS_type.isEmpty() ? "" : FLAGS_type[0]); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 104 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 105 | if (!sk_isdir(path.c_str())) { |
| 106 | return fuzz_file(path, type); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 107 | } |
| 108 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 109 | SkOSFile::Iter it(path.c_str()); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 110 | for (SkString file; it.next(&file); ) { |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 111 | SkString p = SkOSPath::Join(path.c_str(), file.c_str()); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 112 | SkDebugf("Fuzzing %s\n", p.c_str()); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 113 | int rv = fuzz_file(p, type); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 114 | if (rv != 0) { |
| 115 | return rv; |
| 116 | } |
| 117 | } |
| 118 | return 0; |
| 119 | } |
| 120 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 121 | static int fuzz_file(SkString path, SkString type) { |
| 122 | sk_sp<SkData> bytes(SkData::MakeFromFileName(path.c_str())); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 123 | if (!bytes) { |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 124 | SkDebugf("Could not read %s\n", path.c_str()); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 125 | return 1; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 126 | } |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 127 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 128 | SkString name = SkString(FLAGS_name.isEmpty() ? "" : FLAGS_name[0]); |
| 129 | |
| 130 | if (type.isEmpty()) { |
| 131 | type = try_auto_detect(path, &name); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 132 | } |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 133 | |
| 134 | if (type.isEmpty()) { |
| 135 | SkDebugf("Could not autodetect type of %s\n", path.c_str()); |
| 136 | return 1; |
| 137 | } |
| 138 | |
| 139 | if (type.equals("animated_image_decode")) { |
| 140 | fuzz_animated_img(bytes); |
| 141 | return 0; |
| 142 | } |
| 143 | if (type.equals("api")) { |
| 144 | fuzz_api(bytes, name); |
| 145 | return 0; |
| 146 | } |
| 147 | if (type.equals("color_deserialize")) { |
| 148 | fuzz_color_deserialize(bytes); |
| 149 | return 0; |
| 150 | } |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 151 | if (type.equals("filter_fuzz")) { |
| 152 | fuzz_filter_fuzz(bytes); |
| 153 | return 0; |
| 154 | } |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 155 | if (type.equals("image_decode")) { |
| 156 | fuzz_img2(bytes); |
| 157 | return 0; |
| 158 | } |
| 159 | if (type.equals("image_scale")) { |
| 160 | uint8_t option = calculate_option(bytes.get()); |
| 161 | fuzz_img(bytes, option, 0); |
| 162 | return 0; |
| 163 | } |
| 164 | if (type.equals("image_mode")) { |
| 165 | uint8_t option = calculate_option(bytes.get()); |
| 166 | fuzz_img(bytes, 0, option); |
| 167 | return 0; |
| 168 | } |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 169 | if (type.equals("json")) { |
| 170 | fuzz_json(bytes); |
Kevin Lubick | 9eeede2 | 2018-05-03 16:26:10 -0400 | [diff] [blame] | 171 | return 0; |
| 172 | } |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 173 | if (type.equals("path_deserialize")) { |
| 174 | fuzz_path_deserialize(bytes); |
| 175 | return 0; |
| 176 | } |
| 177 | if (type.equals("region_deserialize")) { |
| 178 | fuzz_region_deserialize(bytes); |
| 179 | return 0; |
| 180 | } |
| 181 | if (type.equals("region_set_path")) { |
| 182 | fuzz_region_set_path(bytes); |
| 183 | return 0; |
| 184 | } |
| 185 | if (type.equals("pipe")) { |
Mike Klein | 60900b5 | 2018-09-21 11:19:45 -0400 | [diff] [blame] | 186 | SkDebugf("I would prefer not to.\n"); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 187 | return 0; |
| 188 | } |
Florin Malita | 0b0d93d | 2018-05-04 15:01:03 -0400 | [diff] [blame] | 189 | #if defined(SK_ENABLE_SKOTTIE) |
Kevin Lubick | 9eeede2 | 2018-05-03 16:26:10 -0400 | [diff] [blame] | 190 | if (type.equals("skottie_json")) { |
| 191 | fuzz_skottie_json(bytes); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 192 | return 0; |
| 193 | } |
Florin Malita | 0b0d93d | 2018-05-04 15:01:03 -0400 | [diff] [blame] | 194 | #endif |
Kevin Lubick | 9eeede2 | 2018-05-03 16:26:10 -0400 | [diff] [blame] | 195 | if (type.equals("skp")) { |
| 196 | fuzz_skp(bytes); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 197 | return 0; |
| 198 | } |
| 199 | if (type.equals("textblob")) { |
| 200 | fuzz_textblob_deserialize(bytes); |
| 201 | return 0; |
| 202 | } |
| 203 | #if SK_SUPPORT_GPU |
| 204 | if (type.equals("sksl2glsl")) { |
| 205 | fuzz_sksl2glsl(bytes); |
| 206 | return 0; |
| 207 | } |
| 208 | #endif |
Kevin Lubick | 457fa97 | 2018-05-29 09:22:06 -0400 | [diff] [blame] | 209 | SkDebugf("Unknown type %s\n", type.c_str()); |
Kevin Lubick | 9ff5dc9 | 2018-01-09 12:47:33 -0500 | [diff] [blame] | 210 | SkCommandLineFlags::PrintUsage(); |
| 211 | return 1; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 212 | } |
| 213 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 214 | static std::map<std::string, std::string> cf_api_map = { |
| 215 | {"api_draw_functions", "DrawFunctions"}, |
| 216 | {"api_gradients", "Gradients"}, |
| 217 | {"api_image_filter", "ImageFilter"}, |
| 218 | {"api_mock_gpu_canvas", "MockGPUCanvas"}, |
| 219 | {"api_null_canvas", "NullCanvas"}, |
| 220 | {"api_path_measure", "PathMeasure"}, |
Kevin Lubick | de54d7c | 2018-09-24 08:48:19 -0400 | [diff] [blame] | 221 | {"api_pathop", "Pathop"}, |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 222 | {"api_raster_n32_canvas", "RasterN32Canvas"}, |
| 223 | {"jpeg_encoder", "JPEGEncoder"}, |
| 224 | {"png_encoder", "PNGEncoder"}, |
Kevin Lubick | 6c56055 | 2018-06-20 09:29:23 -0400 | [diff] [blame] | 225 | {"skia_pathop_fuzzer", "Pathop"}, |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 226 | {"webp_encoder", "WEBPEncoder"} |
| 227 | }; |
| 228 | |
Kevin Lubick | 6c56055 | 2018-06-20 09:29:23 -0400 | [diff] [blame] | 229 | // maps clusterfuzz/oss-fuzz -> Skia's name |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 230 | static std::map<std::string, std::string> cf_map = { |
| 231 | {"animated_image_decode", "animated_image_decode"}, |
| 232 | {"image_decode", "image_decode"}, |
| 233 | {"image_filter_deserialize", "filter_fuzz"}, |
| 234 | {"image_filter_deserialize_width", "filter_fuzz"}, |
| 235 | {"path_deserialize", "path_deserialize"}, |
| 236 | {"region_deserialize", "region_deserialize"}, |
| 237 | {"region_set_path", "region_set_path"}, |
Kevin Lubick | 6c56055 | 2018-06-20 09:29:23 -0400 | [diff] [blame] | 238 | {"skjson", "json"}, |
Kevin Lubick | de54d7c | 2018-09-24 08:48:19 -0400 | [diff] [blame] | 239 | #if defined(SK_ENABLE_SKOTTIE) |
| 240 | {"skottie_json", "skottie_json"}, |
| 241 | #endif |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 242 | {"textblob_deserialize", "textblob"} |
| 243 | }; |
| 244 | |
| 245 | static SkString try_auto_detect(SkString path, SkString* name) { |
| 246 | std::cmatch m; |
| 247 | std::regex clusterfuzz("clusterfuzz-testcase(-minimized)?-([a-z0-9_]+)-[\\d]+"); |
| 248 | std::regex skiafuzzer("(api-)?(\\w+)-[a-f0-9]+"); |
| 249 | |
| 250 | if (std::regex_search(path.c_str(), m, clusterfuzz)) { |
| 251 | std::string type = m.str(2); |
Kevin Lubick | 6c56055 | 2018-06-20 09:29:23 -0400 | [diff] [blame] | 252 | |
| 253 | if (cf_api_map.find(type) != cf_api_map.end()) { |
| 254 | *name = SkString(cf_api_map[type].c_str()); |
| 255 | return SkString("api"); |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 256 | } else { |
| 257 | if (cf_map.find(type) != cf_map.end()) { |
| 258 | return SkString(cf_map[type].c_str()); |
| 259 | } |
| 260 | } |
| 261 | } else if (std::regex_search(path.c_str(), m, skiafuzzer)) { |
| 262 | std::string a1 = m.str(1); |
| 263 | std::string typeOrName = m.str(2); |
| 264 | if (a1.length() > 0) { |
| 265 | // it's an api fuzzer |
| 266 | *name = SkString(typeOrName.c_str()); |
| 267 | return SkString("api"); |
| 268 | } else { |
| 269 | return SkString(typeOrName.c_str()); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | return SkString(""); |
| 274 | } |
| 275 | |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 276 | void FuzzJSON(sk_sp<SkData> bytes); |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 277 | |
Florin Malita | 80452be | 2018-06-19 11:27:20 -0400 | [diff] [blame] | 278 | static void fuzz_json(sk_sp<SkData> bytes){ |
| 279 | FuzzJSON(bytes); |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 280 | SkDebugf("[terminated] Done parsing!\n"); |
| 281 | } |
Florin Malita | 7796f00 | 2018-06-08 12:25:38 -0400 | [diff] [blame] | 282 | |
Florin Malita | 0b0d93d | 2018-05-04 15:01:03 -0400 | [diff] [blame] | 283 | #if defined(SK_ENABLE_SKOTTIE) |
Kevin Lubick | 9eeede2 | 2018-05-03 16:26:10 -0400 | [diff] [blame] | 284 | void FuzzSkottieJSON(sk_sp<SkData> bytes); |
| 285 | |
| 286 | static void fuzz_skottie_json(sk_sp<SkData> bytes){ |
| 287 | FuzzSkottieJSON(bytes); |
| 288 | SkDebugf("[terminated] Done animating!\n"); |
| 289 | } |
Florin Malita | 0b0d93d | 2018-05-04 15:01:03 -0400 | [diff] [blame] | 290 | #endif |
Kevin Lubick | 9eeede2 | 2018-05-03 16:26:10 -0400 | [diff] [blame] | 291 | |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 292 | // This adds up the first 1024 bytes and returns it as an 8 bit integer. This allows afl-fuzz to |
| 293 | // deterministically excercise different paths, or *options* (such as different scaling sizes or |
| 294 | // different image modes) without needing to introduce a parameter. This way we don't need a |
| 295 | // image_scale1, image_scale2, image_scale4, etc fuzzer, we can just have a image_scale fuzzer. |
| 296 | // Clients are expected to transform this number into a different range, e.g. with modulo (%). |
| 297 | static uint8_t calculate_option(SkData* bytes) { |
| 298 | uint8_t total = 0; |
| 299 | const uint8_t* data = bytes->bytes(); |
| 300 | for (size_t i = 0; i < 1024 && i < bytes->size(); i++) { |
| 301 | total += data[i]; |
| 302 | } |
| 303 | return total; |
| 304 | } |
| 305 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 306 | static void print_api_names(){ |
| 307 | SkDebugf("When using --type api, please choose an API to fuzz with --name/-n:\n"); |
Hal Canary | 972eba3 | 2018-07-30 17:07:07 -0400 | [diff] [blame] | 308 | for (const Fuzzable& fuzzable : sk_tools::Registry<Fuzzable>::Range()) { |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 309 | SkDebugf("\t%s\n", fuzzable.name); |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | static void fuzz_api(sk_sp<SkData> bytes, SkString name) { |
Hal Canary | 972eba3 | 2018-07-30 17:07:07 -0400 | [diff] [blame] | 314 | for (const Fuzzable& fuzzable : sk_tools::Registry<Fuzzable>::Range()) { |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 315 | if (name.equals(fuzzable.name)) { |
mtklein | f5e9782 | 2016-01-15 06:19:53 -0800 | [diff] [blame] | 316 | SkDebugf("Fuzzing %s...\n", fuzzable.name); |
Kevin Lubick | 1ac8fd2 | 2017-03-01 10:42:45 -0500 | [diff] [blame] | 317 | Fuzz fuzz(std::move(bytes)); |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 318 | fuzzable.fn(&fuzz); |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 319 | SkDebugf("[terminated] Success!\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 320 | return; |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 321 | } |
| 322 | } |
mtklein | d4387ea | 2016-01-21 06:13:52 -0800 | [diff] [blame] | 323 | |
Kevin Lubick | fffa641 | 2018-04-23 16:44:55 -0400 | [diff] [blame] | 324 | print_api_names(); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | static void dump_png(SkBitmap bitmap) { |
| 328 | if (!FLAGS_dump.isEmpty()) { |
Hal Canary | db68301 | 2016-11-23 08:55:18 -0700 | [diff] [blame] | 329 | sk_tool_utils::EncodeImageToFile(FLAGS_dump[0], bitmap, SkEncodedImageFormat::kPNG, 100); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 330 | SkDebugf("Dumped to %s\n", FLAGS_dump[0]); |
| 331 | } |
| 332 | } |
| 333 | |
Kevin Lubick | 2416f96 | 2018-02-12 08:26:39 -0500 | [diff] [blame] | 334 | void FuzzAnimatedImage(sk_sp<SkData> bytes); |
| 335 | |
| 336 | static void fuzz_animated_img(sk_sp<SkData> bytes) { |
| 337 | FuzzAnimatedImage(bytes); |
| 338 | SkDebugf("[terminated] Didn't crash while decoding/drawing animated image!\n"); |
| 339 | } |
| 340 | |
| 341 | void FuzzImage(sk_sp<SkData> bytes); |
| 342 | |
| 343 | static void fuzz_img2(sk_sp<SkData> bytes) { |
| 344 | FuzzImage(bytes); |
| 345 | SkDebugf("[terminated] Didn't crash while decoding/drawing image!\n"); |
| 346 | } |
| 347 | |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 348 | static void fuzz_img(sk_sp<SkData> bytes, uint8_t scale, uint8_t mode) { |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 349 | // We can scale 1x, 2x, 4x, 8x, 16x |
| 350 | scale = scale % 5; |
kjlubick | 5bd98a2 | 2016-02-18 06:27:38 -0800 | [diff] [blame] | 351 | float fscale = (float)pow(2.0f, scale); |
| 352 | SkDebugf("Scaling factor: %f\n", fscale); |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 353 | |
Leon Scroggins III | c5a8366 | 2016-12-08 09:07:56 -0500 | [diff] [blame] | 354 | // We have 5 different modes of decoding. |
| 355 | mode = mode % 5; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 356 | SkDebugf("Mode: %d\n", mode); |
| 357 | |
| 358 | // This is mostly copied from DMSrcSink's CodecSrc::draw method. |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 359 | SkDebugf("Decoding\n"); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 360 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(bytes)); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 361 | if (nullptr == codec.get()) { |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 362 | SkDebugf("[terminated] Couldn't create codec.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 363 | return; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | SkImageInfo decodeInfo = codec->getInfo(); |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 367 | SkISize size = codec->getScaledDimensions(fscale); |
| 368 | decodeInfo = decodeInfo.makeWH(size.width(), size.height()); |
| 369 | |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 370 | SkBitmap bitmap; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 371 | SkCodec::Options options; |
| 372 | options.fZeroInitialized = SkCodec::kYes_ZeroInitialized; |
| 373 | |
Mike Reed | 086a427 | 2017-07-18 10:53:11 -0400 | [diff] [blame] | 374 | if (!bitmap.tryAllocPixelsFlags(decodeInfo, SkBitmap::kZeroPixels_AllocFlag)) { |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 375 | SkDebugf("[terminated] Could not allocate memory. Image might be too large (%d x %d)", |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 376 | decodeInfo.width(), decodeInfo.height()); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 377 | return; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 378 | } |
| 379 | |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 380 | switch (mode) { |
| 381 | case 0: {//kCodecZeroInit_Mode, kCodec_Mode |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 382 | switch (codec->getPixels(decodeInfo, bitmap.getPixels(), bitmap.rowBytes(), &options)) { |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 383 | case SkCodec::kSuccess: |
| 384 | SkDebugf("[terminated] Success!\n"); |
| 385 | break; |
| 386 | case SkCodec::kIncompleteInput: |
| 387 | SkDebugf("[terminated] Partial Success\n"); |
| 388 | break; |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 389 | case SkCodec::kErrorInInput: |
| 390 | SkDebugf("[terminated] Partial Success with error\n"); |
| 391 | break; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 392 | case SkCodec::kInvalidConversion: |
| 393 | SkDebugf("Incompatible colortype conversion\n"); |
| 394 | // Crash to allow afl-fuzz to know this was a bug. |
| 395 | raise(SIGSEGV); |
| 396 | default: |
| 397 | SkDebugf("[terminated] Couldn't getPixels.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 398 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 399 | } |
| 400 | break; |
| 401 | } |
| 402 | case 1: {//kScanline_Mode |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 403 | if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) { |
| 404 | SkDebugf("[terminated] Could not start scanline decoder\n"); |
| 405 | return; |
| 406 | } |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 407 | |
| 408 | void* dst = bitmap.getAddr(0, 0); |
| 409 | size_t rowBytes = bitmap.rowBytes(); |
| 410 | uint32_t height = decodeInfo.height(); |
Brian Osman | ea176c6 | 2018-04-06 15:28:23 -0400 | [diff] [blame] | 411 | // We do not need to check the return value. On an incomplete |
| 412 | // image, memory will be filled with a default value. |
| 413 | codec->getScanlines(dst, height, rowBytes); |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 414 | SkDebugf("[terminated] Success!\n"); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 415 | break; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 416 | } |
| 417 | case 2: { //kStripe_Mode |
| 418 | const int height = decodeInfo.height(); |
| 419 | // This value is chosen arbitrarily. We exercise more cases by choosing a value that |
| 420 | // does not align with image blocks. |
| 421 | const int stripeHeight = 37; |
| 422 | const int numStripes = (height + stripeHeight - 1) / stripeHeight; |
| 423 | |
| 424 | // Decode odd stripes |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 425 | if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo) |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 426 | || SkCodec::kTopDown_SkScanlineOrder != codec->getScanlineOrder()) { |
| 427 | // This mode was designed to test the new skip scanlines API in libjpeg-turbo. |
| 428 | // Jpegs have kTopDown_SkScanlineOrder, and at this time, it is not interesting |
| 429 | // to run this test for image types that do not have this scanline ordering. |
| 430 | SkDebugf("[terminated] Could not start top-down scanline decoder\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 431 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | for (int i = 0; i < numStripes; i += 2) { |
| 435 | // Skip a stripe |
| 436 | const int linesToSkip = SkTMin(stripeHeight, height - i * stripeHeight); |
| 437 | codec->skipScanlines(linesToSkip); |
| 438 | |
| 439 | // Read a stripe |
| 440 | const int startY = (i + 1) * stripeHeight; |
| 441 | const int linesToRead = SkTMin(stripeHeight, height - startY); |
| 442 | if (linesToRead > 0) { |
| 443 | codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes()); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | // Decode even stripes |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 448 | const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo); |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 449 | if (SkCodec::kSuccess != startResult) { |
| 450 | SkDebugf("[terminated] Failed to restart scanline decoder with same parameters.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 451 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 452 | } |
| 453 | for (int i = 0; i < numStripes; i += 2) { |
| 454 | // Read a stripe |
| 455 | const int startY = i * stripeHeight; |
| 456 | const int linesToRead = SkTMin(stripeHeight, height - startY); |
| 457 | codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes()); |
| 458 | |
| 459 | // Skip a stripe |
| 460 | const int linesToSkip = SkTMin(stripeHeight, height - (i + 1) * stripeHeight); |
| 461 | if (linesToSkip > 0) { |
| 462 | codec->skipScanlines(linesToSkip); |
| 463 | } |
| 464 | } |
| 465 | SkDebugf("[terminated] Success!\n"); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 466 | break; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 467 | } |
| 468 | case 3: { //kSubset_Mode |
| 469 | // Arbitrarily choose a divisor. |
| 470 | int divisor = 2; |
| 471 | // Total width/height of the image. |
| 472 | const int W = codec->getInfo().width(); |
| 473 | const int H = codec->getInfo().height(); |
| 474 | if (divisor > W || divisor > H) { |
| 475 | SkDebugf("[terminated] Cannot codec subset: divisor %d is too big " |
| 476 | "with dimensions (%d x %d)\n", divisor, W, H); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 477 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 478 | } |
| 479 | // subset dimensions |
| 480 | // SkWebpCodec, the only one that supports subsets, requires even top/left boundaries. |
| 481 | const int w = SkAlign2(W / divisor); |
| 482 | const int h = SkAlign2(H / divisor); |
| 483 | SkIRect subset; |
| 484 | SkCodec::Options opts; |
| 485 | opts.fSubset = ⊂ |
| 486 | SkBitmap subsetBm; |
| 487 | // We will reuse pixel memory from bitmap. |
| 488 | void* pixels = bitmap.getPixels(); |
| 489 | // Keep track of left and top (for drawing subsetBm into canvas). We could use |
| 490 | // fscale * x and fscale * y, but we want integers such that the next subset will start |
| 491 | // where the last one ended. So we'll add decodeInfo.width() and height(). |
| 492 | int left = 0; |
| 493 | for (int x = 0; x < W; x += w) { |
| 494 | int top = 0; |
| 495 | for (int y = 0; y < H; y+= h) { |
| 496 | // Do not make the subset go off the edge of the image. |
| 497 | const int preScaleW = SkTMin(w, W - x); |
| 498 | const int preScaleH = SkTMin(h, H - y); |
| 499 | subset.setXYWH(x, y, preScaleW, preScaleH); |
| 500 | // And fscale |
| 501 | // FIXME: Should we have a version of getScaledDimensions that takes a subset |
| 502 | // into account? |
| 503 | decodeInfo = decodeInfo.makeWH( |
| 504 | SkTMax(1, SkScalarRoundToInt(preScaleW * fscale)), |
| 505 | SkTMax(1, SkScalarRoundToInt(preScaleH * fscale))); |
| 506 | size_t rowBytes = decodeInfo.minRowBytes(); |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 507 | if (!subsetBm.installPixels(decodeInfo, pixels, rowBytes)) { |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 508 | SkDebugf("[terminated] Could not install pixels.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 509 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 510 | } |
| 511 | const SkCodec::Result result = codec->getPixels(decodeInfo, pixels, rowBytes, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 512 | &opts); |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 513 | switch (result) { |
| 514 | case SkCodec::kSuccess: |
| 515 | case SkCodec::kIncompleteInput: |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 516 | case SkCodec::kErrorInInput: |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 517 | SkDebugf("okay\n"); |
| 518 | break; |
| 519 | case SkCodec::kInvalidConversion: |
| 520 | if (0 == (x|y)) { |
| 521 | // First subset is okay to return unimplemented. |
| 522 | SkDebugf("[terminated] Incompatible colortype conversion\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 523 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 524 | } |
| 525 | // If the first subset succeeded, a later one should not fail. |
| 526 | // fall through to failure |
| 527 | case SkCodec::kUnimplemented: |
| 528 | if (0 == (x|y)) { |
| 529 | // First subset is okay to return unimplemented. |
| 530 | SkDebugf("[terminated] subset codec not supported\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 531 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 532 | } |
| 533 | // If the first subset succeeded, why would a later one fail? |
| 534 | // fall through to failure |
| 535 | default: |
| 536 | SkDebugf("[terminated] subset codec failed to decode (%d, %d, %d, %d) " |
| 537 | "with dimensions (%d x %d)\t error %d\n", |
| 538 | x, y, decodeInfo.width(), decodeInfo.height(), |
| 539 | W, H, result); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 540 | return; |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 541 | } |
| 542 | // translate by the scaled height. |
| 543 | top += decodeInfo.height(); |
| 544 | } |
| 545 | // translate by the scaled width. |
| 546 | left += decodeInfo.width(); |
| 547 | } |
| 548 | SkDebugf("[terminated] Success!\n"); |
| 549 | break; |
| 550 | } |
Leon Scroggins III | c5a8366 | 2016-12-08 09:07:56 -0500 | [diff] [blame] | 551 | case 4: { //kAnimated_Mode |
| 552 | std::vector<SkCodec::FrameInfo> frameInfos = codec->getFrameInfo(); |
| 553 | if (frameInfos.size() == 0) { |
| 554 | SkDebugf("[terminated] Not an animated image\n"); |
| 555 | break; |
| 556 | } |
| 557 | |
| 558 | for (size_t i = 0; i < frameInfos.size(); i++) { |
| 559 | options.fFrameIndex = i; |
| 560 | auto result = codec->startIncrementalDecode(decodeInfo, bitmap.getPixels(), |
| 561 | bitmap.rowBytes(), &options); |
| 562 | if (SkCodec::kSuccess != result) { |
| 563 | SkDebugf("[terminated] failed to start incremental decode " |
| 564 | "in frame %d with error %d\n", i, result); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 565 | return; |
Leon Scroggins III | c5a8366 | 2016-12-08 09:07:56 -0500 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | result = codec->incrementalDecode(); |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 569 | if (result == SkCodec::kIncompleteInput || result == SkCodec::kErrorInInput) { |
Leon Scroggins III | c5a8366 | 2016-12-08 09:07:56 -0500 | [diff] [blame] | 570 | SkDebugf("okay\n"); |
| 571 | // Frames beyond this one will not decode. |
| 572 | break; |
| 573 | } |
| 574 | if (result == SkCodec::kSuccess) { |
| 575 | SkDebugf("okay - decoded frame %d\n", i); |
| 576 | } else { |
| 577 | SkDebugf("[terminated] incremental decode failed with " |
| 578 | "error %d\n", result); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 579 | return; |
Leon Scroggins III | c5a8366 | 2016-12-08 09:07:56 -0500 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | SkDebugf("[terminated] Success!\n"); |
| 583 | break; |
| 584 | } |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 585 | default: |
kjlubick | 2a42f48 | 2016-02-16 16:14:23 -0800 | [diff] [blame] | 586 | SkDebugf("[terminated] Mode not implemented yet\n"); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | dump_png(bitmap); |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 590 | } |
| 591 | |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 592 | static void fuzz_skp(sk_sp<SkData> bytes) { |
Kevin Lubick | 09757b2 | 2017-12-12 12:52:39 -0500 | [diff] [blame] | 593 | SkReadBuffer buf(bytes->data(), bytes->size()); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 594 | SkDebugf("Decoding\n"); |
Cary Clark | efd99cc | 2018-06-11 16:25:43 -0400 | [diff] [blame] | 595 | sk_sp<SkPicture> pic(SkPicturePriv::MakeFromBuffer(buf)); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 596 | if (!pic) { |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 597 | SkDebugf("[terminated] Couldn't decode as a picture.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 598 | return; |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 599 | } |
| 600 | SkDebugf("Rendering\n"); |
| 601 | SkBitmap bitmap; |
| 602 | if (!FLAGS_dump.isEmpty()) { |
| 603 | SkIRect size = pic->cullRect().roundOut(); |
| 604 | bitmap.allocN32Pixels(size.width(), size.height()); |
| 605 | } |
| 606 | SkCanvas canvas(bitmap); |
| 607 | canvas.drawPicture(pic); |
kjlubick | 47d158e | 2016-02-01 08:23:50 -0800 | [diff] [blame] | 608 | SkDebugf("[terminated] Success! Decoded and rendered an SkPicture!\n"); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 609 | dump_png(bitmap); |
kjlubick | dba5734 | 2016-01-21 05:03:28 -0800 | [diff] [blame] | 610 | } |
mtklein | 65e5824 | 2016-01-13 12:57:57 -0800 | [diff] [blame] | 611 | |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 612 | static void fuzz_color_deserialize(sk_sp<SkData> bytes) { |
kjlubick | 3e3c1a5 | 2016-06-23 10:49:27 -0700 | [diff] [blame] | 613 | sk_sp<SkColorSpace> space(SkColorSpace::Deserialize(bytes->data(), bytes->size())); |
| 614 | if (!space) { |
| 615 | SkDebugf("[terminated] Couldn't deserialize Colorspace.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 616 | return; |
kjlubick | 3e3c1a5 | 2016-06-23 10:49:27 -0700 | [diff] [blame] | 617 | } |
| 618 | SkDebugf("[terminated] Success! deserialized Colorspace.\n"); |
kjlubick | 3e3c1a5 | 2016-06-23 10:49:27 -0700 | [diff] [blame] | 619 | } |
| 620 | |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 621 | void FuzzPathDeserialize(SkReadBuffer& buf); |
Kevin Lubick | c9d2829 | 2017-11-09 08:12:56 -0500 | [diff] [blame] | 622 | |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 623 | static void fuzz_path_deserialize(sk_sp<SkData> bytes) { |
| 624 | SkReadBuffer buf(bytes->data(), bytes->size()); |
| 625 | FuzzPathDeserialize(buf); |
| 626 | SkDebugf("[terminated] path_deserialize didn't crash!\n"); |
Kevin Lubick | f04c50a | 2017-01-06 13:48:19 -0500 | [diff] [blame] | 627 | } |
| 628 | |
Kevin Lubick | 2541edf | 2018-01-11 10:27:14 -0500 | [diff] [blame] | 629 | bool FuzzRegionDeserialize(sk_sp<SkData> bytes); |
| 630 | |
Kevin Lubick | edee1ae | 2017-02-20 17:47:18 -0500 | [diff] [blame] | 631 | static void fuzz_region_deserialize(sk_sp<SkData> bytes) { |
Kevin Lubick | 2541edf | 2018-01-11 10:27:14 -0500 | [diff] [blame] | 632 | if (!FuzzRegionDeserialize(bytes)) { |
Kevin Lubick | edee1ae | 2017-02-20 17:47:18 -0500 | [diff] [blame] | 633 | SkDebugf("[terminated] Couldn't initialize SkRegion.\n"); |
| 634 | return; |
| 635 | } |
Kevin Lubick | edee1ae | 2017-02-20 17:47:18 -0500 | [diff] [blame] | 636 | SkDebugf("[terminated] Success! Initialized SkRegion.\n"); |
| 637 | } |
| 638 | |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 639 | void FuzzTextBlobDeserialize(SkReadBuffer& buf); |
| 640 | |
Kevin Lubick | d46e85f | 2017-11-21 17:13:35 -0500 | [diff] [blame] | 641 | static void fuzz_textblob_deserialize(sk_sp<SkData> bytes) { |
Mike Reed | fadbfcd | 2017-12-06 16:09:20 -0500 | [diff] [blame] | 642 | SkReadBuffer buf(bytes->data(), bytes->size()); |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 643 | FuzzTextBlobDeserialize(buf); |
| 644 | SkDebugf("[terminated] textblob didn't crash!\n"); |
Kevin Lubick | d46e85f | 2017-11-21 17:13:35 -0500 | [diff] [blame] | 645 | } |
| 646 | |
Kevin Lubick | 2541edf | 2018-01-11 10:27:14 -0500 | [diff] [blame] | 647 | void FuzzRegionSetPath(Fuzz* fuzz); |
| 648 | |
| 649 | static void fuzz_region_set_path(sk_sp<SkData> bytes) { |
| 650 | Fuzz fuzz(bytes); |
| 651 | FuzzRegionSetPath(&fuzz); |
| 652 | SkDebugf("[terminated] region_set_path didn't crash!\n"); |
| 653 | } |
| 654 | |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 655 | void FuzzImageFilterDeserialize(sk_sp<SkData> bytes); |
| 656 | |
Herb Derby | a839fc0 | 2017-03-16 12:30:43 -0400 | [diff] [blame] | 657 | static void fuzz_filter_fuzz(sk_sp<SkData> bytes) { |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 658 | FuzzImageFilterDeserialize(bytes); |
| 659 | SkDebugf("[terminated] filter_fuzz didn't crash!\n"); |
Herb Derby | a839fc0 | 2017-03-16 12:30:43 -0400 | [diff] [blame] | 660 | } |
| 661 | |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 662 | #if SK_SUPPORT_GPU |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 663 | static void fuzz_sksl2glsl(sk_sp<SkData> bytes) { |
kjlubick | e719577 | 2016-10-18 10:06:24 -0700 | [diff] [blame] | 664 | SkSL::Compiler compiler; |
Ethan Nicholas | 0df1b04 | 2017-03-31 13:56:23 -0400 | [diff] [blame] | 665 | SkSL::String output; |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 666 | SkSL::Program::Settings settings; |
| 667 | sk_sp<GrShaderCaps> caps = SkSL::ShaderCapsFactory::Default(); |
| 668 | settings.fCaps = caps.get(); |
| 669 | std::unique_ptr<SkSL::Program> program = compiler.convertProgram(SkSL::Program::kFragment_Kind, |
Brian Osman | 93ba0a4 | 2017-08-14 14:48:10 -0400 | [diff] [blame] | 670 | SkSL::String((const char*) bytes->data()), |
| 671 | settings); |
Ethan Nicholas | 941e7e2 | 2016-12-12 15:33:30 -0500 | [diff] [blame] | 672 | if (!program || !compiler.toGLSL(*program, &output)) { |
kjlubick | e719577 | 2016-10-18 10:06:24 -0700 | [diff] [blame] | 673 | SkDebugf("[terminated] Couldn't compile input.\n"); |
Kevin Lubick | f80f115 | 2017-01-06 08:26:56 -0500 | [diff] [blame] | 674 | return; |
kjlubick | e719577 | 2016-10-18 10:06:24 -0700 | [diff] [blame] | 675 | } |
| 676 | SkDebugf("[terminated] Success! Compiled input.\n"); |
kjlubick | e719577 | 2016-10-18 10:06:24 -0700 | [diff] [blame] | 677 | } |
Ethan Nicholas | 7ef4b74 | 2016-11-11 15:16:46 -0500 | [diff] [blame] | 678 | #endif |