forked from google/oss-fuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_fuzzer.cc
23 lines (21 loc) · 861 Bytes
/
parse_fuzzer.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <vector>
#include "expat.h"
std::vector<const char*> kEncodings = {{"UTF-16", "UTF-8", "ISO-8859-1",
"US-ASCII", "UTF-16BE", "UTF-16LE",
"INVALIDENCODING"}};
// Entry point for LibFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
const char* dataPtr = reinterpret_cast<const char*>(data);
for (int use_ns = 0; use_ns <= 1; ++use_ns) {
for (auto enc : kEncodings) {
XML_Parser parser =
use_ns ? XML_ParserCreateNS(enc, '\n') : XML_ParserCreate(enc);
XML_Parse(parser, dataPtr, size, true);
XML_ParserFree(parser);
}
}
return 0;
}