blob: b37e63321229bb913c31849ee84670c943b716c9 [file] [log] [blame]
mtklein65e58242016-01-13 12:57:57 -08001/*
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"
kjlubickdba57342016-01-21 05:03:28 -08009#include "SkCanvas.h"
10#include "SkCodec.h"
mtkleinf5e97822016-01-15 06:19:53 -080011#include "SkCommandLineFlags.h"
kjlubickdba57342016-01-21 05:03:28 -080012#include "SkData.h"
kjlubickdba57342016-01-21 05:03:28 -080013#include "SkImage.h"
14#include "SkImageEncoder.h"
15#include "SkMallocPixelRef.h"
Kevin Lubickf80f1152017-01-06 08:26:56 -050016#include "SkOSFile.h"
17#include "SkOSPath.h"
Herb Derbya839fc02017-03-16 12:30:43 -040018#include "SkPaint.h"
Hal Canary62176db2017-02-27 16:42:03 -050019#include "SkPath.h"
Cary Clarkefd99cc2018-06-11 16:25:43 -040020#include "SkPicturePriv.h"
Mike Reedfadbfcd2017-12-06 16:09:20 -050021#include "SkReadBuffer.h"
Hal Canary62176db2017-02-27 16:42:03 -050022#include "SkStream.h"
23#include "SkSurface.h"
Kevin Lubickd46e85f2017-11-21 17:13:35 -050024#include "SkTextBlob.h"
Hal Canary62176db2017-02-27 16:42:03 -050025
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050026#if SK_SUPPORT_GPU
kjlubicke7195772016-10-18 10:06:24 -070027#include "SkSLCompiler.h"
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050028#endif
kjlubickdba57342016-01-21 05:03:28 -080029
Hal Canary8a001442018-09-19 11:31:27 -040030#include "sk_tool_utils.h"
31
Hal Canary62176db2017-02-27 16:42:03 -050032#include <iostream>
Kevin Lubickacd456a2018-04-24 13:58:16 -040033#include <map>
Kevin Lubickfffa6412018-04-23 16:44:55 -040034#include <regex>
mtkleina1159422016-01-15 05:46:54 -080035#include <signal.h>
Kevin Lubick2541edf2018-01-11 10:27:14 -050036
Hal Canary62176db2017-02-27 16:42:03 -050037DEFINE_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.");
mtkleind4387ea2016-01-21 06:13:52 -080041DEFINE_string2(name, n, "", "If --type is 'api', fuzz the API with this name.");
Hal Canary62176db2017-02-27 16:42:03 -050042DEFINE_string2(dump, d, "", "If not empty, dump 'image*' or 'skp' types as a "
43 "PNG with this name.");
Kevin Lubick9ff5dc92018-01-09 12:47:33 -050044DEFINE_bool2(verbose, v, false, "Print more information while fuzzing.");
Florin Malita7796f002018-06-08 12:25:38 -040045
46// This cannot be inlined in DEFINE_string2 due to interleaved ifdefs
47static 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 Malita80452be2018-06-19 11:27:20 -040055 "json\n"
Florin Malita7796f002018-06-08 12:25:38 -040056 "path_deserialize\n"
Florin Malita7796f002018-06-08 12:25:38 -040057 "region_deserialize\n"
58 "region_set_path\n"
Florin Malita7796f002018-06-08 12:25:38 -040059 "skp\n"
60 "sksl2glsl\n"
61#if defined(SK_ENABLE_SKOTTIE)
62 "skottie_json\n"
63#endif
64 "textblob";
65
66DEFINE_string2(type, t, "", g_type_message);
kjlubickdba57342016-01-21 05:03:28 -080067
Kevin Lubickfffa6412018-04-23 16:44:55 -040068static int fuzz_file(SkString path, SkString type);
kjlubick2a42f482016-02-16 16:14:23 -080069static uint8_t calculate_option(SkData*);
Kevin Lubickfffa6412018-04-23 16:44:55 -040070static SkString try_auto_detect(SkString path, SkString* name);
kjlubickdba57342016-01-21 05:03:28 -080071
Kevin Lubickfffa6412018-04-23 16:44:55 -040072static void fuzz_api(sk_sp<SkData> bytes, SkString name);
Kevin Lubickf80f1152017-01-06 08:26:56 -050073static void fuzz_color_deserialize(sk_sp<SkData>);
Kevin Lubickd46e85f2017-11-21 17:13:35 -050074static void fuzz_filter_fuzz(sk_sp<SkData>);
Kevin Lubick2416f962018-02-12 08:26:39 -050075static void fuzz_img2(sk_sp<SkData>);
76static void fuzz_animated_img(sk_sp<SkData>);
Kevin Lubick0168e042017-02-14 13:12:37 -050077static void fuzz_img(sk_sp<SkData>, uint8_t, uint8_t);
Florin Malita80452be2018-06-19 11:27:20 -040078static void fuzz_json(sk_sp<SkData>);
Kevin Lubickf04c50a2017-01-06 13:48:19 -050079static void fuzz_path_deserialize(sk_sp<SkData>);
Kevin Lubickedee1ae2017-02-20 17:47:18 -050080static void fuzz_region_deserialize(sk_sp<SkData>);
Kevin Lubick2541edf2018-01-11 10:27:14 -050081static void fuzz_region_set_path(sk_sp<SkData>);
Kevin Lubick0168e042017-02-14 13:12:37 -050082static void fuzz_skp(sk_sp<SkData>);
Kevin Lubickd46e85f2017-11-21 17:13:35 -050083static void fuzz_textblob_deserialize(sk_sp<SkData>);
Herb Derbya839fc02017-03-16 12:30:43 -040084
Kevin Lubickfffa6412018-04-23 16:44:55 -040085static void print_api_names();
86
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050087#if SK_SUPPORT_GPU
Kevin Lubickf80f1152017-01-06 08:26:56 -050088static void fuzz_sksl2glsl(sk_sp<SkData>);
Ethan Nicholas7ef4b742016-11-11 15:16:46 -050089#endif
mtklein65e58242016-01-13 12:57:57 -080090
Florin Malita0b0d93d2018-05-04 15:01:03 -040091#if defined(SK_ENABLE_SKOTTIE)
92static void fuzz_skottie_json(sk_sp<SkData>);
93#endif
94
mtklein65e58242016-01-13 12:57:57 -080095int main(int argc, char** argv) {
Kevin Lubick9ff5dc92018-01-09 12:47:33 -050096 SkCommandLineFlags::SetUsage("Usage: fuzz -t <type> -b <path/to/file> [-n api-to-fuzz]\n"
Kevin Lubickfffa6412018-04-23 16:44:55 -040097 " 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");
mtkleinf5e97822016-01-15 06:19:53 -0800100 SkCommandLineFlags::Parse(argc, argv);
101
Kevin Lubickfffa6412018-04-23 16:44:55 -0400102 SkString path = SkString(FLAGS_bytes.isEmpty() ? argv[0] : FLAGS_bytes[0]);
103 SkString type = SkString(FLAGS_type.isEmpty() ? "" : FLAGS_type[0]);
Kevin Lubickf80f1152017-01-06 08:26:56 -0500104
Kevin Lubickfffa6412018-04-23 16:44:55 -0400105 if (!sk_isdir(path.c_str())) {
106 return fuzz_file(path, type);
Kevin Lubickf80f1152017-01-06 08:26:56 -0500107 }
108
Kevin Lubickfffa6412018-04-23 16:44:55 -0400109 SkOSFile::Iter it(path.c_str());
Kevin Lubickf80f1152017-01-06 08:26:56 -0500110 for (SkString file; it.next(&file); ) {
Kevin Lubickfffa6412018-04-23 16:44:55 -0400111 SkString p = SkOSPath::Join(path.c_str(), file.c_str());
Kevin Lubickf80f1152017-01-06 08:26:56 -0500112 SkDebugf("Fuzzing %s\n", p.c_str());
Kevin Lubickfffa6412018-04-23 16:44:55 -0400113 int rv = fuzz_file(p, type);
Kevin Lubickf80f1152017-01-06 08:26:56 -0500114 if (rv != 0) {
115 return rv;
116 }
117 }
118 return 0;
119}
120
Kevin Lubickfffa6412018-04-23 16:44:55 -0400121static int fuzz_file(SkString path, SkString type) {
122 sk_sp<SkData> bytes(SkData::MakeFromFileName(path.c_str()));
kjlubickdba57342016-01-21 05:03:28 -0800123 if (!bytes) {
Kevin Lubickfffa6412018-04-23 16:44:55 -0400124 SkDebugf("Could not read %s\n", path.c_str());
Kevin Lubickf80f1152017-01-06 08:26:56 -0500125 return 1;
kjlubickdba57342016-01-21 05:03:28 -0800126 }
mtklein65e58242016-01-13 12:57:57 -0800127
Kevin Lubickfffa6412018-04-23 16:44:55 -0400128 SkString name = SkString(FLAGS_name.isEmpty() ? "" : FLAGS_name[0]);
129
130 if (type.isEmpty()) {
131 type = try_auto_detect(path, &name);
kjlubickdba57342016-01-21 05:03:28 -0800132 }
Kevin Lubickfffa6412018-04-23 16:44:55 -0400133
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 Malita80452be2018-06-19 11:27:20 -0400151 if (type.equals("filter_fuzz")) {
152 fuzz_filter_fuzz(bytes);
153 return 0;
154 }
Kevin Lubickfffa6412018-04-23 16:44:55 -0400155 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 Malita80452be2018-06-19 11:27:20 -0400169 if (type.equals("json")) {
170 fuzz_json(bytes);
Kevin Lubick9eeede22018-05-03 16:26:10 -0400171 return 0;
172 }
Kevin Lubickfffa6412018-04-23 16:44:55 -0400173 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 Klein60900b52018-09-21 11:19:45 -0400186 SkDebugf("I would prefer not to.\n");
Kevin Lubickfffa6412018-04-23 16:44:55 -0400187 return 0;
188 }
Florin Malita0b0d93d2018-05-04 15:01:03 -0400189#if defined(SK_ENABLE_SKOTTIE)
Kevin Lubick9eeede22018-05-03 16:26:10 -0400190 if (type.equals("skottie_json")) {
191 fuzz_skottie_json(bytes);
Kevin Lubickfffa6412018-04-23 16:44:55 -0400192 return 0;
193 }
Florin Malita0b0d93d2018-05-04 15:01:03 -0400194#endif
Kevin Lubick9eeede22018-05-03 16:26:10 -0400195 if (type.equals("skp")) {
196 fuzz_skp(bytes);
Kevin Lubickfffa6412018-04-23 16:44:55 -0400197 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 Lubick457fa972018-05-29 09:22:06 -0400209 SkDebugf("Unknown type %s\n", type.c_str());
Kevin Lubick9ff5dc92018-01-09 12:47:33 -0500210 SkCommandLineFlags::PrintUsage();
211 return 1;
kjlubickdba57342016-01-21 05:03:28 -0800212}
213
Kevin Lubickfffa6412018-04-23 16:44:55 -0400214static 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 Lubickde54d7c2018-09-24 08:48:19 -0400221 {"api_pathop", "Pathop"},
Kevin Lubickfffa6412018-04-23 16:44:55 -0400222 {"api_raster_n32_canvas", "RasterN32Canvas"},
223 {"jpeg_encoder", "JPEGEncoder"},
224 {"png_encoder", "PNGEncoder"},
Kevin Lubick6c560552018-06-20 09:29:23 -0400225 {"skia_pathop_fuzzer", "Pathop"},
Kevin Lubickfffa6412018-04-23 16:44:55 -0400226 {"webp_encoder", "WEBPEncoder"}
227};
228
Kevin Lubick6c560552018-06-20 09:29:23 -0400229// maps clusterfuzz/oss-fuzz -> Skia's name
Kevin Lubickfffa6412018-04-23 16:44:55 -0400230static 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 Lubick6c560552018-06-20 09:29:23 -0400238 {"skjson", "json"},
Kevin Lubickde54d7c2018-09-24 08:48:19 -0400239#if defined(SK_ENABLE_SKOTTIE)
240 {"skottie_json", "skottie_json"},
241#endif
Kevin Lubickfffa6412018-04-23 16:44:55 -0400242 {"textblob_deserialize", "textblob"}
243};
244
245static 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 Lubick6c560552018-06-20 09:29:23 -0400252
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 Lubickfffa6412018-04-23 16:44:55 -0400256 } 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 Malita80452be2018-06-19 11:27:20 -0400276void FuzzJSON(sk_sp<SkData> bytes);
Florin Malita7796f002018-06-08 12:25:38 -0400277
Florin Malita80452be2018-06-19 11:27:20 -0400278static void fuzz_json(sk_sp<SkData> bytes){
279 FuzzJSON(bytes);
Florin Malita7796f002018-06-08 12:25:38 -0400280 SkDebugf("[terminated] Done parsing!\n");
281}
Florin Malita7796f002018-06-08 12:25:38 -0400282
Florin Malita0b0d93d2018-05-04 15:01:03 -0400283#if defined(SK_ENABLE_SKOTTIE)
Kevin Lubick9eeede22018-05-03 16:26:10 -0400284void FuzzSkottieJSON(sk_sp<SkData> bytes);
285
286static void fuzz_skottie_json(sk_sp<SkData> bytes){
287 FuzzSkottieJSON(bytes);
288 SkDebugf("[terminated] Done animating!\n");
289}
Florin Malita0b0d93d2018-05-04 15:01:03 -0400290#endif
Kevin Lubick9eeede22018-05-03 16:26:10 -0400291
kjlubick2a42f482016-02-16 16:14:23 -0800292// 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 (%).
297static 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 Lubickfffa6412018-04-23 16:44:55 -0400306static void print_api_names(){
307 SkDebugf("When using --type api, please choose an API to fuzz with --name/-n:\n");
Hal Canary972eba32018-07-30 17:07:07 -0400308 for (const Fuzzable& fuzzable : sk_tools::Registry<Fuzzable>::Range()) {
Kevin Lubickfffa6412018-04-23 16:44:55 -0400309 SkDebugf("\t%s\n", fuzzable.name);
310 }
311}
312
313static void fuzz_api(sk_sp<SkData> bytes, SkString name) {
Hal Canary972eba32018-07-30 17:07:07 -0400314 for (const Fuzzable& fuzzable : sk_tools::Registry<Fuzzable>::Range()) {
Kevin Lubickfffa6412018-04-23 16:44:55 -0400315 if (name.equals(fuzzable.name)) {
mtkleinf5e97822016-01-15 06:19:53 -0800316 SkDebugf("Fuzzing %s...\n", fuzzable.name);
Kevin Lubick1ac8fd22017-03-01 10:42:45 -0500317 Fuzz fuzz(std::move(bytes));
mtklein65e58242016-01-13 12:57:57 -0800318 fuzzable.fn(&fuzz);
kjlubick47d158e2016-02-01 08:23:50 -0800319 SkDebugf("[terminated] Success!\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500320 return;
mtklein65e58242016-01-13 12:57:57 -0800321 }
322 }
mtkleind4387ea2016-01-21 06:13:52 -0800323
Kevin Lubickfffa6412018-04-23 16:44:55 -0400324 print_api_names();
kjlubickdba57342016-01-21 05:03:28 -0800325}
326
327static void dump_png(SkBitmap bitmap) {
328 if (!FLAGS_dump.isEmpty()) {
Hal Canarydb683012016-11-23 08:55:18 -0700329 sk_tool_utils::EncodeImageToFile(FLAGS_dump[0], bitmap, SkEncodedImageFormat::kPNG, 100);
kjlubickdba57342016-01-21 05:03:28 -0800330 SkDebugf("Dumped to %s\n", FLAGS_dump[0]);
331 }
332}
333
Kevin Lubick2416f962018-02-12 08:26:39 -0500334void FuzzAnimatedImage(sk_sp<SkData> bytes);
335
336static 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
341void FuzzImage(sk_sp<SkData> bytes);
342
343static void fuzz_img2(sk_sp<SkData> bytes) {
344 FuzzImage(bytes);
345 SkDebugf("[terminated] Didn't crash while decoding/drawing image!\n");
346}
347
Kevin Lubickf80f1152017-01-06 08:26:56 -0500348static void fuzz_img(sk_sp<SkData> bytes, uint8_t scale, uint8_t mode) {
kjlubick2a42f482016-02-16 16:14:23 -0800349 // We can scale 1x, 2x, 4x, 8x, 16x
350 scale = scale % 5;
kjlubick5bd98a22016-02-18 06:27:38 -0800351 float fscale = (float)pow(2.0f, scale);
352 SkDebugf("Scaling factor: %f\n", fscale);
kjlubick2a42f482016-02-16 16:14:23 -0800353
Leon Scroggins IIIc5a83662016-12-08 09:07:56 -0500354 // We have 5 different modes of decoding.
355 mode = mode % 5;
kjlubick2a42f482016-02-16 16:14:23 -0800356 SkDebugf("Mode: %d\n", mode);
357
358 // This is mostly copied from DMSrcSink's CodecSrc::draw method.
kjlubick47d158e2016-02-01 08:23:50 -0800359 SkDebugf("Decoding\n");
Mike Reedede7bac2017-07-23 15:30:02 -0400360 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(bytes));
kjlubickdba57342016-01-21 05:03:28 -0800361 if (nullptr == codec.get()) {
kjlubick47d158e2016-02-01 08:23:50 -0800362 SkDebugf("[terminated] Couldn't create codec.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500363 return;
kjlubickdba57342016-01-21 05:03:28 -0800364 }
365
366 SkImageInfo decodeInfo = codec->getInfo();
kjlubick2a42f482016-02-16 16:14:23 -0800367 SkISize size = codec->getScaledDimensions(fscale);
368 decodeInfo = decodeInfo.makeWH(size.width(), size.height());
369
kjlubickdba57342016-01-21 05:03:28 -0800370 SkBitmap bitmap;
kjlubickdba57342016-01-21 05:03:28 -0800371 SkCodec::Options options;
372 options.fZeroInitialized = SkCodec::kYes_ZeroInitialized;
373
Mike Reed086a4272017-07-18 10:53:11 -0400374 if (!bitmap.tryAllocPixelsFlags(decodeInfo, SkBitmap::kZeroPixels_AllocFlag)) {
kjlubick47d158e2016-02-01 08:23:50 -0800375 SkDebugf("[terminated] Could not allocate memory. Image might be too large (%d x %d)",
kjlubick2a42f482016-02-16 16:14:23 -0800376 decodeInfo.width(), decodeInfo.height());
Kevin Lubickf80f1152017-01-06 08:26:56 -0500377 return;
kjlubickdba57342016-01-21 05:03:28 -0800378 }
379
kjlubick2a42f482016-02-16 16:14:23 -0800380 switch (mode) {
381 case 0: {//kCodecZeroInit_Mode, kCodec_Mode
Leon Scroggins571b30f2017-07-11 17:35:31 +0000382 switch (codec->getPixels(decodeInfo, bitmap.getPixels(), bitmap.rowBytes(), &options)) {
kjlubick2a42f482016-02-16 16:14:23 -0800383 case SkCodec::kSuccess:
384 SkDebugf("[terminated] Success!\n");
385 break;
386 case SkCodec::kIncompleteInput:
387 SkDebugf("[terminated] Partial Success\n");
388 break;
Leon Scroggins III674a1842017-07-06 12:26:09 -0400389 case SkCodec::kErrorInInput:
390 SkDebugf("[terminated] Partial Success with error\n");
391 break;
kjlubick2a42f482016-02-16 16:14:23 -0800392 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 Lubickf80f1152017-01-06 08:26:56 -0500398 return;
kjlubick2a42f482016-02-16 16:14:23 -0800399 }
400 break;
401 }
402 case 1: {//kScanline_Mode
Leon Scroggins571b30f2017-07-11 17:35:31 +0000403 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)) {
404 SkDebugf("[terminated] Could not start scanline decoder\n");
405 return;
406 }
kjlubick2a42f482016-02-16 16:14:23 -0800407
408 void* dst = bitmap.getAddr(0, 0);
409 size_t rowBytes = bitmap.rowBytes();
410 uint32_t height = decodeInfo.height();
Brian Osmanea176c62018-04-06 15:28:23 -0400411 // 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);
kjlubick47d158e2016-02-01 08:23:50 -0800414 SkDebugf("[terminated] Success!\n");
kjlubickdba57342016-01-21 05:03:28 -0800415 break;
kjlubick2a42f482016-02-16 16:14:23 -0800416 }
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 Scroggins571b30f2017-07-11 17:35:31 +0000425 if (SkCodec::kSuccess != codec->startScanlineDecode(decodeInfo)
kjlubick2a42f482016-02-16 16:14:23 -0800426 || 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 Lubickf80f1152017-01-06 08:26:56 -0500431 return;
kjlubick2a42f482016-02-16 16:14:23 -0800432 }
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 Scroggins571b30f2017-07-11 17:35:31 +0000448 const SkCodec::Result startResult = codec->startScanlineDecode(decodeInfo);
kjlubick2a42f482016-02-16 16:14:23 -0800449 if (SkCodec::kSuccess != startResult) {
450 SkDebugf("[terminated] Failed to restart scanline decoder with same parameters.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500451 return;
kjlubick2a42f482016-02-16 16:14:23 -0800452 }
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");
kjlubickdba57342016-01-21 05:03:28 -0800466 break;
kjlubick2a42f482016-02-16 16:14:23 -0800467 }
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 Lubickf80f1152017-01-06 08:26:56 -0500477 return;
kjlubick2a42f482016-02-16 16:14:23 -0800478 }
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 = &subset;
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 Scroggins571b30f2017-07-11 17:35:31 +0000507 if (!subsetBm.installPixels(decodeInfo, pixels, rowBytes)) {
kjlubick2a42f482016-02-16 16:14:23 -0800508 SkDebugf("[terminated] Could not install pixels.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500509 return;
kjlubick2a42f482016-02-16 16:14:23 -0800510 }
511 const SkCodec::Result result = codec->getPixels(decodeInfo, pixels, rowBytes,
Leon Scroggins571b30f2017-07-11 17:35:31 +0000512 &opts);
kjlubick2a42f482016-02-16 16:14:23 -0800513 switch (result) {
514 case SkCodec::kSuccess:
515 case SkCodec::kIncompleteInput:
Leon Scroggins III674a1842017-07-06 12:26:09 -0400516 case SkCodec::kErrorInInput:
kjlubick2a42f482016-02-16 16:14:23 -0800517 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 Lubickf80f1152017-01-06 08:26:56 -0500523 return;
kjlubick2a42f482016-02-16 16:14:23 -0800524 }
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 Lubickf80f1152017-01-06 08:26:56 -0500531 return;
kjlubick2a42f482016-02-16 16:14:23 -0800532 }
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 Lubickf80f1152017-01-06 08:26:56 -0500540 return;
kjlubick2a42f482016-02-16 16:14:23 -0800541 }
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 IIIc5a83662016-12-08 09:07:56 -0500551 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 Lubickf80f1152017-01-06 08:26:56 -0500565 return;
Leon Scroggins IIIc5a83662016-12-08 09:07:56 -0500566 }
567
568 result = codec->incrementalDecode();
Leon Scroggins III674a1842017-07-06 12:26:09 -0400569 if (result == SkCodec::kIncompleteInput || result == SkCodec::kErrorInInput) {
Leon Scroggins IIIc5a83662016-12-08 09:07:56 -0500570 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 Lubickf80f1152017-01-06 08:26:56 -0500579 return;
Leon Scroggins IIIc5a83662016-12-08 09:07:56 -0500580 }
581 }
582 SkDebugf("[terminated] Success!\n");
583 break;
584 }
kjlubickdba57342016-01-21 05:03:28 -0800585 default:
kjlubick2a42f482016-02-16 16:14:23 -0800586 SkDebugf("[terminated] Mode not implemented yet\n");
kjlubickdba57342016-01-21 05:03:28 -0800587 }
588
589 dump_png(bitmap);
mtklein65e58242016-01-13 12:57:57 -0800590}
591
Kevin Lubickf80f1152017-01-06 08:26:56 -0500592static void fuzz_skp(sk_sp<SkData> bytes) {
Kevin Lubick09757b22017-12-12 12:52:39 -0500593 SkReadBuffer buf(bytes->data(), bytes->size());
kjlubickdba57342016-01-21 05:03:28 -0800594 SkDebugf("Decoding\n");
Cary Clarkefd99cc2018-06-11 16:25:43 -0400595 sk_sp<SkPicture> pic(SkPicturePriv::MakeFromBuffer(buf));
kjlubickdba57342016-01-21 05:03:28 -0800596 if (!pic) {
kjlubick47d158e2016-02-01 08:23:50 -0800597 SkDebugf("[terminated] Couldn't decode as a picture.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500598 return;
kjlubickdba57342016-01-21 05:03:28 -0800599 }
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);
kjlubick47d158e2016-02-01 08:23:50 -0800608 SkDebugf("[terminated] Success! Decoded and rendered an SkPicture!\n");
kjlubickdba57342016-01-21 05:03:28 -0800609 dump_png(bitmap);
kjlubickdba57342016-01-21 05:03:28 -0800610}
mtklein65e58242016-01-13 12:57:57 -0800611
Kevin Lubickf80f1152017-01-06 08:26:56 -0500612static void fuzz_color_deserialize(sk_sp<SkData> bytes) {
kjlubick3e3c1a52016-06-23 10:49:27 -0700613 sk_sp<SkColorSpace> space(SkColorSpace::Deserialize(bytes->data(), bytes->size()));
614 if (!space) {
615 SkDebugf("[terminated] Couldn't deserialize Colorspace.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500616 return;
kjlubick3e3c1a52016-06-23 10:49:27 -0700617 }
618 SkDebugf("[terminated] Success! deserialized Colorspace.\n");
kjlubick3e3c1a52016-06-23 10:49:27 -0700619}
620
Kevin Lubickf034d112018-02-08 14:31:24 -0500621void FuzzPathDeserialize(SkReadBuffer& buf);
Kevin Lubickc9d28292017-11-09 08:12:56 -0500622
Kevin Lubickf034d112018-02-08 14:31:24 -0500623static 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 Lubickf04c50a2017-01-06 13:48:19 -0500627}
628
Kevin Lubick2541edf2018-01-11 10:27:14 -0500629bool FuzzRegionDeserialize(sk_sp<SkData> bytes);
630
Kevin Lubickedee1ae2017-02-20 17:47:18 -0500631static void fuzz_region_deserialize(sk_sp<SkData> bytes) {
Kevin Lubick2541edf2018-01-11 10:27:14 -0500632 if (!FuzzRegionDeserialize(bytes)) {
Kevin Lubickedee1ae2017-02-20 17:47:18 -0500633 SkDebugf("[terminated] Couldn't initialize SkRegion.\n");
634 return;
635 }
Kevin Lubickedee1ae2017-02-20 17:47:18 -0500636 SkDebugf("[terminated] Success! Initialized SkRegion.\n");
637}
638
Kevin Lubickf034d112018-02-08 14:31:24 -0500639void FuzzTextBlobDeserialize(SkReadBuffer& buf);
640
Kevin Lubickd46e85f2017-11-21 17:13:35 -0500641static void fuzz_textblob_deserialize(sk_sp<SkData> bytes) {
Mike Reedfadbfcd2017-12-06 16:09:20 -0500642 SkReadBuffer buf(bytes->data(), bytes->size());
Kevin Lubickf034d112018-02-08 14:31:24 -0500643 FuzzTextBlobDeserialize(buf);
644 SkDebugf("[terminated] textblob didn't crash!\n");
Kevin Lubickd46e85f2017-11-21 17:13:35 -0500645}
646
Kevin Lubick2541edf2018-01-11 10:27:14 -0500647void FuzzRegionSetPath(Fuzz* fuzz);
648
649static 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 Lubickf034d112018-02-08 14:31:24 -0500655void FuzzImageFilterDeserialize(sk_sp<SkData> bytes);
656
Herb Derbya839fc02017-03-16 12:30:43 -0400657static void fuzz_filter_fuzz(sk_sp<SkData> bytes) {
Kevin Lubickf034d112018-02-08 14:31:24 -0500658 FuzzImageFilterDeserialize(bytes);
659 SkDebugf("[terminated] filter_fuzz didn't crash!\n");
Herb Derbya839fc02017-03-16 12:30:43 -0400660}
661
Ethan Nicholas7ef4b742016-11-11 15:16:46 -0500662#if SK_SUPPORT_GPU
Kevin Lubickf80f1152017-01-06 08:26:56 -0500663static void fuzz_sksl2glsl(sk_sp<SkData> bytes) {
kjlubicke7195772016-10-18 10:06:24 -0700664 SkSL::Compiler compiler;
Ethan Nicholas0df1b042017-03-31 13:56:23 -0400665 SkSL::String output;
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500666 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 Osman93ba0a42017-08-14 14:48:10 -0400670 SkSL::String((const char*) bytes->data()),
671 settings);
Ethan Nicholas941e7e22016-12-12 15:33:30 -0500672 if (!program || !compiler.toGLSL(*program, &output)) {
kjlubicke7195772016-10-18 10:06:24 -0700673 SkDebugf("[terminated] Couldn't compile input.\n");
Kevin Lubickf80f1152017-01-06 08:26:56 -0500674 return;
kjlubicke7195772016-10-18 10:06:24 -0700675 }
676 SkDebugf("[terminated] Success! Compiled input.\n");
kjlubicke7195772016-10-18 10:06:24 -0700677}
Ethan Nicholas7ef4b742016-11-11 15:16:46 -0500678#endif