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