blob: 0f9365604e57294112e65ec25c0a34acb5681353 [file] [log] [blame]
Robert Swiecki0e673882016-03-31 18:50:29 +02001/*
2 *
3 * honggfuzz - routines dealing with subprocesses
4 * -----------------------------------------
5 *
6 * Author: Robert Swiecki <swiecki@google.com>
7 *
8 * Copyright 2010-2015 by Google Inc. All Rights Reserved.
9 *
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_SUBPROC_H_
25#define _HF_SUBPROC_H_
26
Jagger93253f72016-09-01 22:40:12 +020027#include <signal.h>
Jaggerc8b6eda2016-09-01 03:52:35 +020028#include <sys/wait.h>
29
30/* Missing WIFCONTINUED in Android */
31#ifndef WIFCONTINUED
32#define WIFCONTINUED(x) WEXITSTATUS(0)
33#endif
34
Robert Swiecki0e673882016-03-31 18:50:29 +020035extern const char *subproc_StatusToStr(int status, char *str, size_t len);
Robert Swieckieab0e862016-10-18 23:04:42 +020036
Jaggerc7743512016-08-31 22:00:19 +020037extern bool subproc_PrepareExecv(honggfuzz_t * hfuzz, fuzzer_t * fuzzer, const char *fileName);
Robert Swieckieab0e862016-10-18 23:04:42 +020038
Robert Swiecki940a0802016-11-02 12:42:09 +010039extern bool subproc_Run(honggfuzz_t * hfuzz, fuzzer_t * fuzzer);
Robert Swieckieab0e862016-10-18 23:04:42 +020040
Jaggerc4729592016-09-02 01:52:30 +020041extern bool subproc_persistentModeRoundDone(honggfuzz_t * hfuzz, fuzzer_t * fuzzer);
Robert Swieckieab0e862016-10-18 23:04:42 +020042
Robert Swiecki810d2c92017-06-01 21:37:27 +020043extern uint8_t subproc_System(honggfuzz_t * hfuzz, fuzzer_t * fuzzer, const char *const argv[]);
Robert Swiecki0e673882016-03-31 18:50:29 +020044
Robert Swieckifddc0862016-10-27 12:42:46 +020045extern void subproc_checkTimeLimit(honggfuzz_t * hfuzz, fuzzer_t * fuzzer);
46
Robert Swiecki4f09ce02017-02-25 22:47:55 +010047extern void subproc_checkTermination(honggfuzz_t * hfuzz, fuzzer_t * fuzzer);
48
Robert Swiecki0e673882016-03-31 18:50:29 +020049#endif