blob: 364e4fefa24085e4f18b179621b60720dc4c3b4c [file] [log] [blame]
robert.swiecki3bb518c2010-10-14 00:48:24 +00001/*
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +00002 *
robert.swiecki@gmail.com90e99112015-02-15 02:05:14 +00003 * honggfuzz - fuzzing routines
4 * -----------------------------------------
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +00005 *
robert.swiecki@gmail.com8531f692015-02-17 12:25:36 +00006 * Author:
7 * Robert Swiecki <swiecki@google.com>
8 * Felix Gröbert <groebert@google.com>
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +00009 *
robert.swiecki@gmail.com772b33d2015-02-14 20:35:00 +000010 * Copyright 2010-2015 by Google Inc. All Rights Reserved.
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +000011 *
12 * Licensed under the Apache License, Version 2.0 (the "License"); you may
13 * not use this file except in compliance with the License. You may obtain
robert.swiecki@gmail.com772b33d2015-02-14 20:35:00 +000014 * a copy of the License at
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +000015 *
robert.swiecki@gmail.com772b33d2015-02-14 20:35:00 +000016 * http://www.apache.org/licenses/LICENSE-2.0
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +000017 *
robert.swiecki@gmail.com772b33d2015-02-14 20:35:00 +000018 * Unless required by applicable law or agreed to in writing, software
19 * distributed under the License is distributed on an "AS IS" BASIS,
20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
21 * implied. See the License for the specific language governing
22 * permissions and limitations under the License.
robert.swiecki@gmail.com3b630b42015-02-16 10:53:53 +000023 *
robert.swiecki@gmail.com772b33d2015-02-14 20:35:00 +000024 */
robert.swiecki3bb518c2010-10-14 00:48:24 +000025
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000026#include "common.h"
27#include "fuzz.h"
28
29#include <errno.h>
30#include <fcntl.h>
robert.swiecki@gmail.com90e99112015-02-15 02:05:14 +000031#include <inttypes.h>
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +000032#include <pthread.h>
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000033#include <signal.h>
34#include <stddef.h>
35#include <stdint.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000039#include <sys/param.h>
40#include <sys/stat.h>
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000041#include <sys/time.h>
42#include <sys/types.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000043#include <time.h>
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000044#include <unistd.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000045
robert.swiecki3bb518c2010-10-14 00:48:24 +000046#include "arch.h"
robert.swiecki3bb518c2010-10-14 00:48:24 +000047#include "files.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000048#include "log.h"
robert.swiecki@gmail.com36700b52015-02-22 05:03:16 +000049#include "mangle.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000050#include "report.h"
Jagger00265602016-03-10 02:36:27 +010051#include "sancov.h"
Jaggerc7743512016-08-31 22:00:19 +020052#include "subproc.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000053#include "util.h"
robert.swiecki3bb518c2010-10-14 00:48:24 +000054
Jagger6113c432015-09-24 05:00:28 +020055static pthread_t fuzz_mainThread;
56
robert.swiecki3bb518c2010-10-14 00:48:24 +000057static void fuzz_getFileName(honggfuzz_t * hfuzz, char *fileName)
58{
robert.swieckiba512632011-01-28 11:57:26 +000059 struct timeval tv;
60 gettimeofday(&tv, NULL);
61
Jaggerc44a89a2016-09-25 16:42:44 +020062 snprintf(fileName, PATH_MAX, "%s/.honggfuzz.%d.%lu.%" PRIx64 ".%s", hfuzz->workDir,
63 (int)getpid(), (unsigned long int)tv.tv_sec, util_rnd64(), hfuzz->fileExtn);
robert.swiecki3bb518c2010-10-14 00:48:24 +000064}
65
Robert Swieckia96d78d2016-03-14 16:50:50 +010066static bool fuzz_prepareFileDynamically(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +000067{
Robert Swiecki3bfc33c2016-03-14 18:12:41 +010068 struct dynfile_t *dynfile;
Robert Swieckia08ab1c2016-03-14 18:29:21 +010069
70 {
Robert Swiecki76ecd5e2016-03-16 14:57:03 +010071 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Robert Swiecki4b0390a2016-03-14 18:44:05 +010072
Jaggerb070b812016-03-15 05:31:30 +010073 if (hfuzz->dynfileqCnt == 0) {
Jaggere4496512016-03-16 01:55:46 +010074 LOG_F("The dynamic file corpus is empty. Apparently, the initial fuzzing of the "
75 "provided file corpus (-f) has not produced any follow-up files with positive "
76 "coverage and/or CPU counters");
Jaggerb070b812016-03-15 05:31:30 +010077 }
78
Robert Swiecki4b0390a2016-03-14 18:44:05 +010079 size_t i = 0U;
Robert Swieckia08ab1c2016-03-14 18:29:21 +010080 size_t dynFilePos = util_rndGet(0, hfuzz->dynfileqCnt - 1);
81 TAILQ_FOREACH(dynfile, &hfuzz->dynfileq, pointers) {
82 if (i++ == dynFilePos) {
83 break;
84 }
Robert Swiecki3bfc33c2016-03-14 18:12:41 +010085 }
86 }
87
88 memcpy(fuzzer->dynamicFile, dynfile->data, dynfile->size);
Robert Swieckia08ab1c2016-03-14 18:29:21 +010089 fuzzer->dynamicFileSz = dynfile->size;
Robert Swiecki3bfc33c2016-03-14 18:12:41 +010090
Anestis Bechtsoudis6ef24e42016-01-13 13:05:53 +020091 mangle_Resize(hfuzz, fuzzer->dynamicFile, &fuzzer->dynamicFileSz);
Robert Swieckia96d78d2016-03-14 16:50:50 +010092 mangle_mangleContent(hfuzz, fuzzer);
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +000093
Jagger1d743382016-04-02 02:09:41 +020094 if (hfuzz->persistent == false && files_writeBufToFile
robert.swiecki@gmail.com62e34ae2015-03-05 03:39:32 +000095 (fuzzer->fileName, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
Jagger5a3c4c32016-04-16 19:27:47 +020096 O_WRONLY | O_CREAT | O_EXCL | O_TRUNC | O_CLOEXEC) == false) {
Robert Swieckic8c32db2015-10-09 18:06:22 +020097 LOG_E("Couldn't write buffer to file '%s'", fuzzer->fileName);
robert.swiecki@gmail.com3b6c6292015-02-26 11:48:46 +000098 return false;
99 }
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000100
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000101 return true;
robert.swiecki@gmail.comd7aed312015-02-03 21:26:37 +0000102}
103
robert.swiecki@gmail.com4a7a9d82015-03-01 01:25:16 +0000104static bool fuzz_prepareFile(honggfuzz_t * hfuzz, fuzzer_t * fuzzer, int rnd_index)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000105{
Robert Swieckie8f8e8d2016-10-03 23:51:32 +0200106 struct paths_t *file = files_getFileFromFileq(hfuzz, rnd_index);
107
108 ssize_t fileSz = files_readFileToBufMax(file->path, fuzzer->dynamicFile, hfuzz->maxFileSz);
Jagger1aa94d72016-04-02 02:37:35 +0200109 if (fileSz < 0) {
Robert Swieckie8f8e8d2016-10-03 23:51:32 +0200110 LOG_E("Couldn't read contents of '%s'", file->path);
robert.swiecki@gmail.combb5d2642015-02-25 20:00:00 +0000111 return false;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000112 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100113 fuzzer->dynamicFileSz = fileSz;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000114
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200115 /* If flip rate is 0.0, early abort file mangling */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100116 if (fuzzer->flipRate != 0.0L) {
117 mangle_Resize(hfuzz, fuzzer->dynamicFile, &fuzzer->dynamicFileSz);
118 mangle_mangleContent(hfuzz, fuzzer);
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200119 }
robert.swiecki@gmail.comc070b942015-02-25 18:29:19 +0000120
Jagger1d743382016-04-02 02:09:41 +0200121 if (hfuzz->persistent == false && files_writeBufToFile
Robert Swieckia96d78d2016-03-14 16:50:50 +0100122 (fuzzer->fileName, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
Jagger5a3c4c32016-04-16 19:27:47 +0200123 O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC) == false) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200124 LOG_E("Couldn't write buffer to file '%s'", fuzzer->fileName);
robert.swiecki@gmail.come7680522015-02-22 22:22:37 +0000125 return false;
126 }
127
robert.swiecki3bb518c2010-10-14 00:48:24 +0000128 return true;
129}
130
Jaggera34b3022016-04-02 02:20:40 +0200131static bool fuzz_prepareFileExternally(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000132{
Jagger5a3c4c32016-04-16 19:27:47 +0200133 int dstfd = open(fuzzer->fileName, O_CREAT | O_EXCL | O_RDWR | O_CLOEXEC, 0644);
Jaggera34b3022016-04-02 02:20:40 +0200134 if (dstfd == -1) {
135 PLOG_E("Couldn't create a temporary file '%s'", fuzzer->fileName);
136 return false;
Robert Swieckie48811e2016-03-09 18:31:19 +0100137 }
Jaggera34b3022016-04-02 02:20:40 +0200138 close(dstfd);
139
140 LOG_D("Created '%s' as an input file", fuzzer->fileName);
robert.swiecki3d505e22010-10-14 01:17:17 +0000141
Robert Swiecki54333cd2016-09-07 17:51:48 +0200142 const char *const argv[] = { hfuzz->externalCommand, fuzzer->fileName, NULL };
143 if (subproc_System(argv) != 0) {
144 LOG_E("Subprocess '%s' returned abnormally", hfuzz->externalCommand);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000145 return false;
146 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200147 LOG_D("Subporcess '%s' finished with success", hfuzz->externalCommand);
Jagger1d743382016-04-02 02:09:41 +0200148
149 ssize_t rsz = files_readFileToBufMax(fuzzer->fileName, fuzzer->dynamicFile, hfuzz->maxFileSz);
Jagger1aa94d72016-04-02 02:37:35 +0200150 if (rsz < 0) {
Jagger1d743382016-04-02 02:09:41 +0200151 LOG_W("Couldn't read back '%s' to the buffer", fuzzer->fileName);
152 return false;
153 }
154 fuzzer->dynamicFileSz = rsz;
155
156 if (hfuzz->persistent) {
157 unlink(fuzzer->fileName);
158 }
159
160 return true;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000161}
162
Robert Swieckiee266ac2016-10-03 02:25:59 +0200163static bool fuzz_postProcessFile(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
164{
165 if (hfuzz->persistent == true) {
166 LOG_F("Postprocessing file in persistent mode not yet supported");
167 }
168
169 const char *const argv[] = { hfuzz->postExternalCommand, fuzzer->fileName, NULL };
170 if (subproc_System(argv) != 0) {
171 LOG_E("Subprocess '%s' returned abnormally", hfuzz->postExternalCommand);
172 return false;
173 }
174 LOG_D("Subporcess '%s' finished with success", hfuzz->externalCommand);
175
176 ssize_t rsz = files_readFileToBufMax(fuzzer->fileName, fuzzer->dynamicFile, hfuzz->maxFileSz);
177 if (rsz < 0) {
178 LOG_W("Couldn't read back '%s' to the buffer", fuzzer->fileName);
179 return false;
180 }
181 fuzzer->dynamicFileSz = rsz;
182
183 return true;
184}
185
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300186static bool fuzz_runVerifier(honggfuzz_t * hfuzz, fuzzer_t * crashedFuzzer)
187{
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300188 int crashFd = -1;
189 uint8_t *crashBuf = NULL;
190 off_t crashFileSz = 0;
191
192 crashBuf = files_mapFile(crashedFuzzer->crashFileName, &crashFileSz, &crashFd, false);
193 if (crashBuf == NULL) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700194 LOG_E("Couldn't open and map '%s' in R/O mode", crashedFuzzer->crashFileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100195 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300196 }
Jagger4fe18692016-04-22 23:15:07 +0200197 defer {
198 munmap(crashBuf, crashFileSz);
Jagger4fe18692016-04-22 23:15:07 +0200199 close(crashFd);
200 };
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300201
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700202 LOG_I("Launching verifier for %" PRIx64 " hash", crashedFuzzer->backtrace);
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300203 for (int i = 0; i < _HF_VERIFIER_ITER; i++) {
204 fuzzer_t vFuzzer = {
205 .pid = 0,
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300206 .persistentPid = 0,
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300207 .timeStartedMillis = util_timeNowMillis(),
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300208 .crashFileName = {0},
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300209 .pc = 0ULL,
210 .backtrace = 0ULL,
211 .access = 0ULL,
212 .exception = 0,
213 .dynamicFileSz = 0,
214 .dynamicFile = NULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200215 .sanCovCnts = {
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200216 .hitBBCnt = 0ULL,
217 .totalBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200218 .dsoCnt = 0ULL,
219 .iDsoCnt = 0ULL,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200220 .newBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200221 .crashesCnt = 0ULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200222 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300223 .report = {'\0'},
Jaggerb2c1fad2016-03-17 23:37:10 +0100224 .mainWorker = false,
Jaggerfa3544a2016-08-30 02:55:55 +0200225 .fuzzNo = crashedFuzzer->fuzzNo,
Jagger93253f72016-09-01 22:40:12 +0200226 .persistentSock = -1,
Jaggerb2c1fad2016-03-17 23:37:10 +0100227
Jagger2381ef42016-03-20 23:32:05 +0100228 .linux = {
229 .hwCnts = {
230 .cpuInstrCnt = 0ULL,
231 .cpuBranchCnt = 0ULL,
232 .customCnt = 0ULL,
233 .bbCnt = 0ULL,
234 .newBBCnt = 0ULL,
Jagger34789a72016-09-08 00:36:09 +0200235 .softCntPc = 0ULL,
236 .softCntCmp = 0ULL,
Jagger2381ef42016-03-20 23:32:05 +0100237 },
238 .perfMmapBuf = NULL,
239 .perfMmapAux = NULL,
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300240 .attachedPid = 0,
Jagger2381ef42016-03-20 23:32:05 +0100241 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300242 };
243
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300244 if (arch_archThreadInit(hfuzz, &vFuzzer) == false) {
245 LOG_F("Could not initialize the thread");
246 }
247
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300248 fuzz_getFileName(hfuzz, vFuzzer.fileName);
249 if (files_writeBufToFile
Jagger33cce5d2016-04-16 20:10:36 +0200250 (vFuzzer.fileName, crashBuf, crashFileSz,
251 O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC) == false) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700252 LOG_E("Couldn't write buffer to file '%s'", vFuzzer.fileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100253 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300254 }
255
Jaggerd1fc9ed2016-09-02 01:06:51 +0200256 if (subproc_New(hfuzz, &vFuzzer) == false) {
Jagger93253f72016-09-01 22:40:12 +0200257 PLOG_F("subproc_New()");
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300258 }
Jaggerd1fc9ed2016-09-02 01:06:51 +0200259 subproc_Run(hfuzz, &vFuzzer);
Robert Swieckia8b8cb82016-08-17 18:27:08 +0200260
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300261 /* If stack hash doesn't match skip name tag and exit */
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300262 if (crashedFuzzer->backtrace != vFuzzer.backtrace) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700263 LOG_D("Verifier stack hash mismatch");
Robert Swieckie48811e2016-03-09 18:31:19 +0100264 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300265 }
266 }
267
268 /* Workspace is inherited, just append a extra suffix */
269 char verFile[PATH_MAX] = { 0 };
270 snprintf(verFile, sizeof(verFile), "%s.verified", crashedFuzzer->crashFileName);
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300271
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200272 /* Copy file with new suffix & remove original copy */
273 bool dstFileExists = false;
274 if (files_copyFile(crashedFuzzer->crashFileName, verFile, &dstFileExists)) {
275 LOG_I("Successfully verified, saving as (%s)", verFile);
Jaggerd34417d2016-03-16 01:26:54 +0100276 ATOMIC_POST_INC(hfuzz->verifiedCrashesCnt);
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200277 unlink(crashedFuzzer->crashFileName);
278 } else {
279 if (dstFileExists) {
280 LOG_I("It seems that '%s' already exists, skipping", verFile);
281 } else {
282 LOG_E("Couldn't copy '%s' to '%s'", crashedFuzzer->crashFileName, verFile);
Robert Swieckie48811e2016-03-09 18:31:19 +0100283 return false;
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200284 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300285 }
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300286
Robert Swieckie48811e2016-03-09 18:31:19 +0100287 return true;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300288}
289
Jagger3c7e7ce2016-09-25 16:05:19 +0200290static fuzzState_t fuzz_getState(honggfuzz_t * hfuzz)
291{
292 return ATOMIC_GET(hfuzz->state);
293}
294
295static void fuzz_setState(honggfuzz_t * hfuzz, fuzzState_t state)
296{
297 ATOMIC_SET(hfuzz->state, state);
298}
299
Robert Swieckid258ff82016-08-29 17:54:20 +0200300static void fuzz_addFileToFileQLocked(honggfuzz_t * hfuzz, uint8_t * data, size_t size)
Robert Swieckif3534bb2016-03-14 18:55:10 +0100301{
Robert Swiecki7084e652016-03-14 19:47:00 +0100302 struct dynfile_t *dynfile = (struct dynfile_t *)util_Malloc(sizeof(struct dynfile_t));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100303 dynfile->size = size;
Robert Swiecki7084e652016-03-14 19:47:00 +0100304 dynfile->data = (uint8_t *) util_Malloc(size);
Robert Swieckif3534bb2016-03-14 18:55:10 +0100305 memcpy(dynfile->data, data, size);
306 TAILQ_INSERT_TAIL(&hfuzz->dynfileq, dynfile, pointers);
307 hfuzz->dynfileqCnt++;
308
Jagger3c7e7ce2016-09-25 16:05:19 +0200309 /* No need to add new coverage if we are supposed to append new coverage-inducing inputs only */
Jagger1b2d4822016-09-25 16:19:45 +0200310 if (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE && hfuzz->covDir == NULL) {
311 LOG_D("New coverage found, but we're in the initial coverage assessment state. Skipping");
Jagger3c7e7ce2016-09-25 16:05:19 +0200312 return;
313 }
314
Jaggerb30b4812016-09-25 16:34:15 +0200315 char tmstr[512];
Jagger3968ba32016-09-25 16:44:31 +0200316 util_getLocalTime("%Y%m%d.%H%M%S", tmstr, sizeof(tmstr), time(NULL));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100317 char fname[PATH_MAX];
Jagger1b2d4822016-09-25 16:19:45 +0200318 if (hfuzz->covDir == NULL) {
Jaggerb30b4812016-09-25 16:34:15 +0200319 snprintf(fname, sizeof(fname), "%s/TIME.%s.ITER.%" PRIu64 ".RND.%" PRIx64 ".HONGGFUZZ.COV",
Jaggerc44a89a2016-09-25 16:42:44 +0200320 hfuzz->inputDir, tmstr, (uint64_t) ATOMIC_GET(hfuzz->mutationsCnt), util_rnd64());
Jagger3c7e7ce2016-09-25 16:05:19 +0200321 } else {
Jaggerb30b4812016-09-25 16:34:15 +0200322 snprintf(fname, sizeof(fname), "%s/TIME.%s.ITER.%" PRIu64 ".RND.%" PRIx64 ".HONGGFUZZ.COV",
Jaggerc44a89a2016-09-25 16:42:44 +0200323 hfuzz->covDir, tmstr, (uint64_t) ATOMIC_GET(hfuzz->mutationsCnt), util_rnd64());
Jagger3c7e7ce2016-09-25 16:05:19 +0200324 }
325
Jagger33cce5d2016-04-16 20:10:36 +0200326 if (files_writeBufToFile(fname, data, size, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC | O_CLOEXEC)
327 == false) {
Robert Swieckif3534bb2016-03-14 18:55:10 +0100328 LOG_W("Couldn't write buffer to file '%s'", fname);
329 }
330}
331
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200332static void fuzz_perfFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
333{
334 LOG_D
Jagger395df022016-08-21 01:13:25 +0200335 ("New file size: %zu, Perf feedback new/cur (instr,branch): %" PRIu64 "/%" PRIu64 "/%"
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100336 PRIu64 "/%" PRIu64 ", BBcnt new/total: %" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
Jagger247c3b42016-03-21 23:24:05 +0100337 fuzzer->linux.hwCnts.cpuInstrCnt, hfuzz->linux.hwCnts.cpuInstrCnt,
338 fuzzer->linux.hwCnts.cpuBranchCnt, hfuzz->linux.hwCnts.cpuBranchCnt,
339 fuzzer->linux.hwCnts.newBBCnt, hfuzz->linux.hwCnts.bbCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200340
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100341 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200342
Jagger34789a72016-09-08 00:36:09 +0200343 uint64_t softCntPc = 0UL;
344 uint64_t softCntCmp = 0UL;
Jagger251d0192016-08-24 00:54:04 +0200345 if (hfuzz->bbFd != -1) {
Jagger34789a72016-09-08 00:36:09 +0200346 softCntPc = ATOMIC_GET(hfuzz->feedback->pidFeedbackPc[fuzzer->fuzzNo]);
347 ATOMIC_CLEAR(hfuzz->feedback->pidFeedbackPc[fuzzer->fuzzNo]);
348 softCntCmp = ATOMIC_GET(hfuzz->feedback->pidFeedbackCmp[fuzzer->fuzzNo]);
349 ATOMIC_CLEAR(hfuzz->feedback->pidFeedbackCmp[fuzzer->fuzzNo]);
Jagger251d0192016-08-24 00:54:04 +0200350 }
Jaggerb01aaae2016-08-20 03:35:38 +0200351
Jagger302c2ea2016-09-07 03:54:43 +0200352 int64_t diff0 = hfuzz->linux.hwCnts.cpuInstrCnt - fuzzer->linux.hwCnts.cpuInstrCnt;
353 int64_t diff1 = hfuzz->linux.hwCnts.cpuBranchCnt - fuzzer->linux.hwCnts.cpuBranchCnt;
354 int64_t diff2 = hfuzz->linux.hwCnts.customCnt - fuzzer->linux.hwCnts.customCnt;
Jagger302c2ea2016-09-07 03:54:43 +0200355
Jagger8d0002c2016-08-17 03:44:23 +0200356 /*
357 * Coverage is the primary counter, the rest is secondary, and taken into consideration only
358 * if the coverage counter has not been changed
359 */
Jagger34789a72016-09-08 00:36:09 +0200360 if (fuzzer->linux.hwCnts.newBBCnt > 0 || softCntPc > 0 || softCntCmp > 0 || diff0 < 0
361 || diff1 < 0 || diff2 < 0) {
Jagger247c3b42016-03-21 23:24:05 +0100362 hfuzz->linux.hwCnts.cpuInstrCnt = fuzzer->linux.hwCnts.cpuInstrCnt;
363 hfuzz->linux.hwCnts.cpuBranchCnt = fuzzer->linux.hwCnts.cpuBranchCnt;
364 hfuzz->linux.hwCnts.customCnt = fuzzer->linux.hwCnts.customCnt;
365 hfuzz->linux.hwCnts.bbCnt += fuzzer->linux.hwCnts.newBBCnt;
Jagger34789a72016-09-08 00:36:09 +0200366 hfuzz->linux.hwCnts.softCntPc += softCntPc;
367 hfuzz->linux.hwCnts.softCntCmp += softCntCmp;
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200368
Jagger395df022016-08-21 01:13:25 +0200369 LOG_I
Robert Swiecki8e1feb62016-10-16 18:37:25 +0200370 ("New: %zu B., (instr,branch,soft,soft-cmp,perf,custom): %" PRIu64 "/%"
Jagger91c687c2016-09-07 03:51:21 +0200371 PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 ", Total: %" PRIu64 "/%" PRIu64
372 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
Jagger34789a72016-09-08 00:36:09 +0200373 fuzzer->linux.hwCnts.cpuInstrCnt, fuzzer->linux.hwCnts.cpuBranchCnt, softCntPc,
374 softCntCmp, fuzzer->linux.hwCnts.newBBCnt, fuzzer->linux.hwCnts.customCnt,
Jagger91c687c2016-09-07 03:51:21 +0200375 hfuzz->linux.hwCnts.cpuInstrCnt, hfuzz->linux.hwCnts.cpuBranchCnt,
Jagger34789a72016-09-08 00:36:09 +0200376 hfuzz->linux.hwCnts.softCntPc, hfuzz->linux.hwCnts.softCntCmp,
377 hfuzz->linux.hwCnts.bbCnt, hfuzz->linux.hwCnts.customCnt);
Jagger395df022016-08-21 01:13:25 +0200378
Robert Swieckid258ff82016-08-29 17:54:20 +0200379 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200380 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200381}
382
383static void fuzz_sanCovFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
384{
385 LOG_D
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100386 ("File size (Best/New): %zu, SanCov feedback (bb,dso): Best: [%" PRIu64
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200387 ",%" PRIu64 "] / New: [%" PRIu64 ",%" PRIu64 "], newBBs:%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100388 fuzzer->dynamicFileSz, hfuzz->sanCovCnts.hitBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200389 hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt, fuzzer->sanCovCnts.iDsoCnt,
390 fuzzer->sanCovCnts.newBBCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200391
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100392 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200393
Jaggerd5738372016-08-17 20:12:15 +0200394 int64_t diff0 = hfuzz->linux.hwCnts.cpuInstrCnt - fuzzer->linux.hwCnts.cpuInstrCnt;
395 int64_t diff1 = hfuzz->linux.hwCnts.cpuBranchCnt - fuzzer->linux.hwCnts.cpuBranchCnt;
396 int64_t diff2 = hfuzz->linux.hwCnts.customCnt - fuzzer->linux.hwCnts.customCnt;
397
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200398 /*
399 * Keep mutated seed if:
Robert Swiecki142f9412016-03-14 19:22:01 +0100400 * a) Newly discovered (not met before) BBs
401 * b) More instrumented DSOs loaded
Robert Swiecki23ec02a2016-01-19 18:47:45 +0100402 *
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200403 * TODO: (a) method can significantly assist to further improvements in interesting areas
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200404 * discovery if combined with seeds pool/queue support. If a runtime queue is maintained
405 * more interesting seeds can be saved between runs instead of instantly discarded
406 * based on current absolute elitism (only one mutated seed is promoted).
407 */
Jaggerd5738372016-08-17 20:12:15 +0200408
409 bool newCov = (fuzzer->sanCovCnts.newBBCnt > 0
410 || hfuzz->sanCovCnts.iDsoCnt < fuzzer->sanCovCnts.iDsoCnt);
411
412 if (newCov || (diff0 < 0 || diff1 < 0 || diff2 < 0)) {
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100413 LOG_I("SanCov Update: file size (Cur): %zu, newBBs:%" PRIu64
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200414 ", counters (Cur,New): %" PRIu64 "/%" PRIu64 ",%" PRIu64 "/%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100415 fuzzer->dynamicFileSz, fuzzer->sanCovCnts.newBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200416 hfuzz->sanCovCnts.hitBBCnt, hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200417 fuzzer->sanCovCnts.iDsoCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200418
Robert Swiecki142f9412016-03-14 19:22:01 +0100419 hfuzz->sanCovCnts.hitBBCnt += fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200420 hfuzz->sanCovCnts.dsoCnt = fuzzer->sanCovCnts.dsoCnt;
421 hfuzz->sanCovCnts.iDsoCnt = fuzzer->sanCovCnts.iDsoCnt;
422 hfuzz->sanCovCnts.crashesCnt += fuzzer->sanCovCnts.crashesCnt;
Robert Swiecki142f9412016-03-14 19:22:01 +0100423 hfuzz->sanCovCnts.newBBCnt = fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200424
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200425 if (hfuzz->sanCovCnts.totalBBCnt < fuzzer->sanCovCnts.totalBBCnt) {
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200426 /* Keep only the max value (for dlopen cases) to measure total target coverage */
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200427 hfuzz->sanCovCnts.totalBBCnt = fuzzer->sanCovCnts.totalBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200428 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200429
Jaggerd5738372016-08-17 20:12:15 +0200430 hfuzz->linux.hwCnts.cpuInstrCnt = fuzzer->linux.hwCnts.cpuInstrCnt;
431 hfuzz->linux.hwCnts.cpuBranchCnt = fuzzer->linux.hwCnts.cpuBranchCnt;
432 hfuzz->linux.hwCnts.customCnt = fuzzer->linux.hwCnts.customCnt;
433
Robert Swieckid258ff82016-08-29 17:54:20 +0200434 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200435 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200436}
437
Robert Swieckidecf14b2016-03-31 15:09:28 +0200438static void fuzz_fuzzLoop(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
Jagger190f0dc2015-09-05 16:41:22 +0200439{
Robert Swieckidecf14b2016-03-31 15:09:28 +0200440 fuzzer->pid = 0;
441 fuzzer->timeStartedMillis = util_timeNowMillis();
442 fuzzer->crashFileName[0] = '\0';
443 fuzzer->pc = 0ULL;
444 fuzzer->backtrace = 0ULL;
445 fuzzer->access = 0ULL;
446 fuzzer->exception = 0;
447 fuzzer->report[0] = '\0';
448 fuzzer->mainWorker = true;
449 fuzzer->origFileName = "DYNAMIC";
450 fuzzer->flipRate = hfuzz->origFlipRate;
451 fuzzer->dynamicFileSz = 0;
Robert Swieckia96d78d2016-03-14 16:50:50 +0100452
Robert Swieckidecf14b2016-03-31 15:09:28 +0200453 fuzzer->sanCovCnts.hitBBCnt = 0ULL;
454 fuzzer->sanCovCnts.totalBBCnt = 0ULL;
455 fuzzer->sanCovCnts.dsoCnt = 0ULL;
456 fuzzer->sanCovCnts.newBBCnt = 0ULL;
457 fuzzer->sanCovCnts.crashesCnt = 0ULL;
Robert Swieckia96d78d2016-03-14 16:50:50 +0100458
Robert Swieckidecf14b2016-03-31 15:09:28 +0200459 fuzzer->linux.hwCnts.cpuInstrCnt = 0ULL;
460 fuzzer->linux.hwCnts.cpuBranchCnt = 0ULL;
461 fuzzer->linux.hwCnts.customCnt = 0ULL;
462 fuzzer->linux.hwCnts.bbCnt = 0ULL;
463 fuzzer->linux.hwCnts.newBBCnt = 0ULL;
464 fuzzer->linux.perfMmapBuf = NULL;
465 fuzzer->linux.perfMmapAux = NULL;
Jagger190f0dc2015-09-05 16:41:22 +0200466
Anestis Bechtsoudis2013f252015-11-07 22:03:31 +0200467 size_t rnd_index = util_rndGet(0, hfuzz->fileCnt - 1);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200468
469 /* If dry run mode, pick the next file and not a random one */
Robert Swieckidecf14b2016-03-31 15:09:28 +0200470 if (fuzzer->flipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100471 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200472 }
Robert Swiecki129afe82016-03-15 20:03:20 +0100473
Robert Swiecki6d01e822016-03-15 20:21:46 +0100474 if (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
Jaggerd34417d2016-03-16 01:26:54 +0100475 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100476 if (rnd_index >= hfuzz->fileCnt) {
Jagger33fd9522016-03-15 22:13:57 +0100477 /*
478 * The waiting logic (for the DYNAMIC_PRE phase to finish) should be based on cond-waits
479 * or mutexes, but it'd complicate code too much
480 */
Robert Swiecki6d01e822016-03-15 20:21:46 +0100481 while (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
482 sleep(1);
Robert Swiecki129afe82016-03-15 20:03:20 +0100483 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100484 }
485 }
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200486
Jagger33fd9522016-03-15 22:13:57 +0100487 fuzzState_t state = fuzz_getState(hfuzz);
Robert Swieckidecf14b2016-03-31 15:09:28 +0200488 if (state != _HF_STATE_DYNAMIC_MAIN) {
Robert Swieckie8f8e8d2016-10-03 23:51:32 +0200489 fuzzer->origFileName = files_basename(files_getFileFromFileq(hfuzz, rnd_index)->path);
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100490 }
Robert Swiecki6d01e822016-03-15 20:21:46 +0100491
Robert Swieckidecf14b2016-03-31 15:09:28 +0200492 fuzz_getFileName(hfuzz, fuzzer->fileName);
Jagger190f0dc2015-09-05 16:41:22 +0200493
Robert Swieckiee266ac2016-10-03 02:25:59 +0200494 if (state == _HF_STATE_DYNAMIC_PRE) {
495 fuzzer->flipRate = 0.0f;
496 if (!fuzz_prepareFile(hfuzz, fuzzer, rnd_index)) {
497 LOG_F("fuzz_prepareFile() failed");
498 }
499 } else if (hfuzz->externalCommand) {
Jagger30384ec2016-04-02 02:30:32 +0200500 if (!fuzz_prepareFileExternally(hfuzz, fuzzer)) {
501 LOG_F("fuzz_prepareFileExternally() failed");
502 }
503 } else if (state == _HF_STATE_DYNAMIC_MAIN) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200504 if (!fuzz_prepareFileDynamically(hfuzz, fuzzer)) {
Jagger1d8e0c62016-04-02 02:22:40 +0200505 LOG_F("fuzz_prepareFileDynamically() failed");
Robert Swieckia96d78d2016-03-14 16:50:50 +0100506 }
Jagger190f0dc2015-09-05 16:41:22 +0200507 } else {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200508 if (!fuzz_prepareFile(hfuzz, fuzzer, rnd_index)) {
Jagger1d8e0c62016-04-02 02:22:40 +0200509 LOG_F("fuzz_prepareFile() failed");
Jagger190f0dc2015-09-05 16:41:22 +0200510 }
511 }
512
Robert Swiecki0fcace22016-10-03 21:24:32 +0200513 if (state == _HF_STATE_STATIC && hfuzz->postExternalCommand != NULL) {
Robert Swieckiee266ac2016-10-03 02:25:59 +0200514 if (!fuzz_postProcessFile(hfuzz, fuzzer)) {
515 LOG_F("fuzz_postProcessFile() failed");
516 }
517 }
518
Jaggerd1fc9ed2016-09-02 01:06:51 +0200519 if (subproc_New(hfuzz, fuzzer) == false) {
Jagger93253f72016-09-01 22:40:12 +0200520 PLOG_F("subproc_New()");
Jagger190f0dc2015-09-05 16:41:22 +0200521 }
Jaggerd1fc9ed2016-09-02 01:06:51 +0200522 subproc_Run(hfuzz, fuzzer);
Jagger190f0dc2015-09-05 16:41:22 +0200523
Jaggera34b3022016-04-02 02:20:40 +0200524 if (hfuzz->persistent == false) {
525 unlink(fuzzer->fileName);
526 }
Jagger190f0dc2015-09-05 16:41:22 +0200527
528 if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200529 fuzz_perfFeedback(hfuzz, fuzzer);
Jaggerabb6ae02016-03-18 01:55:51 +0100530 }
531 if (hfuzz->useSanCov) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200532 fuzz_sanCovFeedback(hfuzz, fuzzer);
Robert Swiecki0f937af2016-03-30 18:19:16 +0200533 }
Jagger190f0dc2015-09-05 16:41:22 +0200534
Robert Swieckidecf14b2016-03-31 15:09:28 +0200535 if (hfuzz->useVerifier && (fuzzer->crashFileName[0] != 0) && fuzzer->backtrace) {
536 if (!fuzz_runVerifier(hfuzz, fuzzer)) {
537 LOG_I("Failed to verify %s", fuzzer->crashFileName);
Anestis Bechtsoudis3085f222015-09-27 18:35:26 +0300538 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300539 }
540
Robert Swiecki216fef62016-10-20 18:32:58 +0200541 report_Report(hfuzz, fuzzer->report);
Robert Swiecki05354ca2016-03-15 19:10:23 +0100542
Jaggerd34417d2016-03-16 01:26:54 +0100543 if (state == _HF_STATE_DYNAMIC_PRE && ATOMIC_PRE_INC(hfuzz->doneFileIndex) >= hfuzz->fileCnt) {
Robert Swiecki6d01e822016-03-15 20:21:46 +0100544 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_MAIN);
Robert Swiecki05354ca2016-03-15 19:10:23 +0100545 }
Jagger190f0dc2015-09-05 16:41:22 +0200546}
547
Jaggerfa3544a2016-08-30 02:55:55 +0200548static uint32_t fuzz_threadNo = 0;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000549static void *fuzz_threadNew(void *arg)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000550{
Jaggerfa3544a2016-08-30 02:55:55 +0200551 unsigned int fuzzNo = ATOMIC_POST_INC(fuzz_threadNo);
552
553 LOG_I("Launched new fuzzing thread, no. #%" PRId32, fuzzNo);
Robert Swiecki0e673882016-03-31 18:50:29 +0200554
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000555 honggfuzz_t *hfuzz = (honggfuzz_t *) arg;
Anestis Bechtsoudis02b99be2015-12-27 11:53:01 +0200556
Robert Swieckidecf14b2016-03-31 15:09:28 +0200557 fuzzer_t fuzzer = {
558 .pid = 0,
559 .persistentPid = 0,
560 .dynamicFile = util_Malloc(hfuzz->maxFileSz),
Jaggerfa3544a2016-08-30 02:55:55 +0200561 .fuzzNo = fuzzNo,
Jagger93253f72016-09-01 22:40:12 +0200562 .persistentSock = -1,
Robert Swiecki12800cd2016-03-31 15:38:10 +0200563
Robert Swieckib692f282016-08-25 16:21:08 +0200564 .linux.attachedPid = 0,
Robert Swieckidecf14b2016-03-31 15:09:28 +0200565 };
Jagger4fe18692016-04-22 23:15:07 +0200566 defer {
567 free(fuzzer.dynamicFile);
568 };
Robert Swieckidecf14b2016-03-31 15:09:28 +0200569
570 if (arch_archThreadInit(hfuzz, &fuzzer) == false) {
Robert Swiecki0f937af2016-03-30 18:19:16 +0200571 LOG_F("Could not initialize the thread");
572 }
573
Robert Swieckia96d78d2016-03-14 16:50:50 +0100574 for (;;) {
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200575 /* Check if dry run mode with verifier enabled */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100576 if (hfuzz->origFlipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100577 if (ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->fileCnt) {
578 ATOMIC_POST_INC(hfuzz->threadsFinished);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200579 // All files checked, weak-up the main process
580 pthread_kill(fuzz_mainThread, SIGALRM);
581 return NULL;
582 }
583 }
584 /* Check for max iterations limit if set */
Jaggerd34417d2016-03-16 01:26:54 +0100585 else if ((ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->mutationsMax)
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200586 && hfuzz->mutationsMax) {
Jaggerd34417d2016-03-16 01:26:54 +0100587 ATOMIC_POST_INC(hfuzz->threadsFinished);
Robert Swiecki81c6a0d2015-09-08 15:43:20 +0200588 // Wake-up the main process
Jagger6113c432015-09-24 05:00:28 +0200589 pthread_kill(fuzz_mainThread, SIGALRM);
Jaggerea39a8f2015-09-05 00:57:22 +0200590 return NULL;
591 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000592
Robert Swieckidecf14b2016-03-31 15:09:28 +0200593 fuzz_fuzzLoop(hfuzz, &fuzzer);
robert.swiecki@gmail.comd4dd4df2015-02-18 00:50:12 +0000594 }
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000595}
596
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000597static void fuzz_runThread(honggfuzz_t * hfuzz, void *(*thread) (void *))
598{
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000599 pthread_attr_t attr;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000600
robert.swiecki@gmail.com6f5c2392015-02-16 18:13:09 +0000601 pthread_attr_init(&attr);
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000602 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
robert.swiecki@gmail.com441089a2015-02-23 13:14:07 +0000603 pthread_attr_setstacksize(&attr, _HF_PTHREAD_STACKSIZE);
robert.swiecki@gmail.com011981f2015-02-17 19:06:44 +0000604 pthread_attr_setguardsize(&attr, (size_t) sysconf(_SC_PAGESIZE));
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000605
robert.swiecki@gmail.com01b6dd42015-02-16 18:11:28 +0000606 pthread_t t;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000607 if (pthread_create(&t, &attr, thread, (void *)hfuzz) < 0) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200608 PLOG_F("Couldn't create a new thread");
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000609 }
610
611 return;
612}
613
Jagger08816fd2016-03-11 01:32:38 +0100614void fuzz_threads(honggfuzz_t * hfuzz)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000615{
Jagger6113c432015-09-24 05:00:28 +0200616 fuzz_mainThread = pthread_self();
617
robert.swiecki@gmail.com956276a2015-04-16 16:51:52 +0000618 if (!arch_archInit(hfuzz)) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200619 LOG_F("Couldn't prepare arch for fuzzing");
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000620 }
Jagger00265602016-03-10 02:36:27 +0100621 if (!sancov_Init(hfuzz)) {
622 LOG_F("Couldn't prepare sancov options");
623 }
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000624
Robert Swieckia96d78d2016-03-14 16:50:50 +0100625 if (hfuzz->useSanCov || hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Jaggerebe19292016-03-17 00:11:44 +0100626 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_PRE);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100627 } else {
Jaggerebe19292016-03-17 00:11:44 +0100628 fuzz_setState(hfuzz, _HF_STATE_STATIC);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100629 }
630
Jaggerea39a8f2015-09-05 00:57:22 +0200631 for (size_t i = 0; i < hfuzz->threadsMax; i++) {
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000632 fuzz_runThread(hfuzz, fuzz_threadNew);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000633 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000634}