OLD | NEW |
1 // Copyright 2016 The PDFium Authors. All rights reserved. | 1 // Copyright 2016 The PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <memory> | 5 #include <memory> |
6 | 6 |
7 #include "xfa/fde/xml/cfx_saxreader.h" | 7 #include "xfa/fde/xml/cfx_saxreader.h" |
8 #include "xfa/fgas/crt/fgas_stream.h" | 8 #include "xfa/fgas/crt/fgas_stream.h" |
9 #include "xfa/fxfa/parser/xfa_utils.h" | 9 #include "xfa/fxfa/parser/cxfa_widetextread.h" |
10 | 10 |
11 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { | 11 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
12 CFX_WideString input = CFX_WideString::FromUTF8( | 12 CFX_WideString input = CFX_WideString::FromUTF8( |
13 CFX_ByteStringC(data, static_cast<FX_STRSIZE>(size))); | 13 CFX_ByteStringC(data, static_cast<FX_STRSIZE>(size))); |
14 std::unique_ptr<IFX_Stream, ReleaseDeleter<IFX_Stream>> stream( | 14 std::unique_ptr<IFX_Stream, ReleaseDeleter<IFX_Stream>> stream( |
15 XFA_CreateWideTextRead(input)); | 15 new CXFA_WideTextRead(input)); |
16 if (!stream) | 16 if (!stream) |
17 return 0; | 17 return 0; |
18 | 18 |
19 std::unique_ptr<IFX_FileRead, ReleaseDeleter<IFX_FileRead>> fileRead( | 19 std::unique_ptr<IFX_FileRead, ReleaseDeleter<IFX_FileRead>> fileRead( |
20 FX_CreateFileRead(stream.get(), false)); | 20 FX_CreateFileRead(stream.get(), false)); |
21 if (!fileRead) | 21 if (!fileRead) |
22 return 0; | 22 return 0; |
23 | 23 |
24 CFX_SAXReader reader; | 24 CFX_SAXReader reader; |
25 if (reader.StartParse(fileRead.get(), 0, -1, CFX_SaxParseMode_NotSkipSpace) < | 25 if (reader.StartParse(fileRead.get(), 0, -1, CFX_SaxParseMode_NotSkipSpace) < |
26 0) { | 26 0) { |
27 return 0; | 27 return 0; |
28 } | 28 } |
29 | 29 |
30 while (1) { | 30 while (1) { |
31 int32_t ret = reader.ContinueParse(nullptr); | 31 int32_t ret = reader.ContinueParse(nullptr); |
32 if (ret < 0 || ret > 99) | 32 if (ret < 0 || ret > 99) |
33 break; | 33 break; |
34 } | 34 } |
35 | 35 |
36 return 0; | 36 return 0; |
37 } | 37 } |
OLD | NEW |