blob: 15664ce7e35f64af3e4cfd4d0487f3214ba0e122 [file] [log] [blame]
Robert Swiecki47476f22017-09-28 15:45:02 +02001/*
2 *
3 * honggfuzz - fetching input for fuzzing
4 * -----------------------------------------
5 *
6 * Author: Robert Swiecki <swiecki@google.com>
7 *
Robert Swiecki46288f72018-02-27 17:28:47 +01008 * Copyright 2010-2018 by Google Inc. All Rights Reserved.
Robert Swiecki47476f22017-09-28 15:45:02 +02009 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License. You may obtain
12 * a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
19 * implied. See the License for the specific language governing
20 * permissions and limitations under the License.
21 *
22 */
23
24#ifndef _HF_INPUT_H_
25#define _HF_INPUT_H_
26
27#include "honggfuzz.h"
28
Robert Swiecki0f2c30a2018-01-13 14:03:39 +010029extern void input_setSize(run_t* run, size_t sz);
Robert Swiecki78633d12017-11-13 23:24:55 +010030extern bool input_getNext(run_t* run, char* fname, bool rewind);
Robert Swiecki4e595fb2017-10-11 17:26:51 +020031extern bool input_init(honggfuzz_t* hfuzz);
Robert Swiecki4e595fb2017-10-11 17:26:51 +020032extern bool input_parseDictionary(honggfuzz_t* hfuzz);
Robert Swiecki4e595fb2017-10-11 17:26:51 +020033extern bool input_parseBlacklist(honggfuzz_t* hfuzz);
arnow117c7566f62019-04-09 05:14:11 +080034extern bool input_prepareDynamicInput(run_t* run, bool need_mangele);
35extern bool input_prepareStaticFile(run_t* run, bool rewind, bool need_mangele);
Robert Swiecki0f2c30a2018-01-13 14:03:39 +010036extern bool input_prepareExternalFile(run_t* run);
37extern bool input_postProcessFile(run_t* run);
arnow117c7566f62019-04-09 05:14:11 +080038extern bool input_feedbackMutateFile(run_t* run);
Robert Swiecki47476f22017-09-28 15:45:02 +020039
Robert Swiecki4e595fb2017-10-11 17:26:51 +020040#endif /* ifndef _HF_INPUT_H_ */