2019-10-21 17:44:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "src/core/SkDescriptor.h"
|
|
|
|
#include "src/core/SkRemoteGlyphCache.h"
|
|
|
|
|
|
|
|
void FuzzSkDescriptorDeserialize(sk_sp<SkData> bytes) {
|
|
|
|
SkAutoDescriptor aDesc;
|
|
|
|
bool ok = SkFuzzDeserializeSkDescriptor(bytes, &aDesc);
|
|
|
|
if (!ok) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto desc = aDesc.getDesc();
|
|
|
|
|
|
|
|
desc->computeChecksum();
|
|
|
|
desc->isValid();
|
|
|
|
|
|
|
|
// An arbitrary number
|
|
|
|
uint32_t tagToFind = 117;
|
|
|
|
|
|
|
|
uint32_t ignore;
|
|
|
|
desc->findEntry(tagToFind, &ignore);
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:37:35 +00:00
|
|
|
#if defined(SK_BUILD_FOR_LIBFUZZER)
|
2019-10-21 17:44:48 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 1024) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-10-21 17:44:48 +00:00
|
|
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
2019-10-23 11:53:29 +00:00
|
|
|
FuzzSkDescriptorDeserialize(bytes);
|
2019-10-21 17:44:48 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|