2016-01-13 20:57:57 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Fuzz.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2016-01-14 12:59:42 +00:00
|
|
|
ASSERT(argc > 2);
|
|
|
|
const char* name = argv[1];
|
|
|
|
const char* path = argv[2];
|
|
|
|
|
|
|
|
SkAutoTUnref<SkData> bytes(SkData::NewFromFileName(path));
|
|
|
|
Fuzz fuzz(bytes);
|
2016-01-13 20:57:57 +00:00
|
|
|
|
|
|
|
for (auto r = SkTRegistry<Fuzzable>::Head(); r; r = r->next()) {
|
|
|
|
auto fuzzable = r->factory();
|
2016-01-14 12:59:42 +00:00
|
|
|
if (0 == strcmp(name, fuzzable.name)) {
|
2016-01-13 20:57:57 +00:00
|
|
|
fuzzable.fn(&fuzz);
|
2016-01-14 12:59:42 +00:00
|
|
|
return 0;
|
2016-01-13 20:57:57 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 12:59:42 +00:00
|
|
|
return 1;
|
2016-01-13 20:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-14 12:59:42 +00:00
|
|
|
Fuzz::Fuzz(SkData* bytes) : fBytes(SkSafeRef(bytes)), fNextByte(0) {}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
static T read(const SkData* data, int* next) {
|
|
|
|
ASSERT(sizeof(T) <= data->size());
|
|
|
|
if (*next + sizeof(T) > data->size()) {
|
|
|
|
*next = 0;
|
|
|
|
}
|
|
|
|
T val;
|
|
|
|
memcpy(&val, data->bytes() + *next, sizeof(T));
|
|
|
|
*next += sizeof(T);
|
|
|
|
return val;
|
|
|
|
}
|
2016-01-13 20:57:57 +00:00
|
|
|
|
2016-01-14 12:59:42 +00:00
|
|
|
uint8_t Fuzz::nextB() { return read<uint8_t >(fBytes, &fNextByte); }
|
|
|
|
uint32_t Fuzz::nextU() { return read<uint32_t>(fBytes, &fNextByte); }
|
|
|
|
float Fuzz::nextF() { return read<float >(fBytes, &fNextByte); }
|
2016-01-13 20:57:57 +00:00
|
|
|
|