blob: fdf6bff7185bb2e635733c80e4f4520aecf6d65c [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>
Robert Swiecki1e1b3532016-03-10 18:43:28 +010040#include <sys/resource.h>
Jagger08816fd2016-03-11 01:32:38 +010041#include <sys/mman.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000042#include <sys/stat.h>
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000043#include <sys/time.h>
44#include <sys/types.h>
45#include <sys/wait.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000046#include <time.h>
robert.swiecki@gmail.comba85c3e2015-02-02 14:55:16 +000047#include <unistd.h>
robert.swiecki3bb518c2010-10-14 00:48:24 +000048
robert.swiecki3bb518c2010-10-14 00:48:24 +000049#include "arch.h"
robert.swiecki3bb518c2010-10-14 00:48:24 +000050#include "files.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000051#include "log.h"
robert.swiecki@gmail.com36700b52015-02-22 05:03:16 +000052#include "mangle.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000053#include "report.h"
Jagger00265602016-03-10 02:36:27 +010054#include "sancov.h"
robert.swiecki@gmail.come7190b92015-02-14 23:05:42 +000055#include "util.h"
robert.swiecki3bb518c2010-10-14 00:48:24 +000056
Jagger1e05f742016-03-10 21:36:27 +010057extern char **environ;
58
Jagger6113c432015-09-24 05:00:28 +020059static pthread_t fuzz_mainThread;
60
robert.swiecki3bb518c2010-10-14 00:48:24 +000061static void fuzz_getFileName(honggfuzz_t * hfuzz, char *fileName)
62{
robert.swieckiba512632011-01-28 11:57:26 +000063 struct timeval tv;
64 gettimeofday(&tv, NULL);
65
Anestis Bechtsoudisd9680532015-09-06 17:37:05 +030066 snprintf(fileName, PATH_MAX, "%s/.honggfuzz.%d.%lu.%llx.%s", hfuzz->workDir, (int)getpid(),
robert.swiecki@gmail.com6f319912015-02-28 05:01:37 +000067 (unsigned long int)tv.tv_sec, (unsigned long long int)util_rndGet(0, 1ULL << 62),
robert.swiecki@gmail.combb5d2642015-02-25 20:00:00 +000068 hfuzz->fileExtn);
robert.swiecki3bb518c2010-10-14 00:48:24 +000069}
70
Robert Swiecki1e1b3532016-03-10 18:43:28 +010071static bool fuzz_prepareExecve(honggfuzz_t * hfuzz, const char *fileName)
72{
73 /*
74 * Set timeout (prof), real timeout (2*prof), and rlimit_cpu (2*prof)
75 */
76 if (hfuzz->tmOut) {
77 struct itimerval it;
78
79 /*
80 * The hfuzz->tmOut is real CPU usage time...
81 */
82 it.it_value.tv_sec = hfuzz->tmOut;
83 it.it_value.tv_usec = 0;
84 it.it_interval.tv_sec = 0;
85 it.it_interval.tv_usec = 0;
86 if (setitimer(ITIMER_PROF, &it, NULL) == -1) {
Robert Swieckic6a48b12016-03-11 17:41:57 +010087 PLOG_D("Couldn't set the ITIMER_PROF timer");
Robert Swiecki1e1b3532016-03-10 18:43:28 +010088 }
89
90 /*
91 * ...so, if a process sleeps, this one should
92 * trigger a signal...
93 */
94 it.it_value.tv_sec = hfuzz->tmOut;
95 it.it_value.tv_usec = 0;
96 it.it_interval.tv_sec = 0;
97 it.it_interval.tv_usec = 0;
98 if (setitimer(ITIMER_REAL, &it, NULL) == -1) {
99 PLOG_E("Couldn't set the ITIMER_REAL timer");
100 return false;
101 }
102
103 /*
104 * ..if a process sleeps and catches SIGPROF/SIGALRM
105 * rlimits won't help either. However, arch_checkTimeLimit
106 * will send a SIGKILL at tmOut + 2 seconds. That should
107 * do it :)
108 */
109 struct rlimit rl;
110
111 rl.rlim_cur = hfuzz->tmOut + 1;
112 rl.rlim_max = hfuzz->tmOut + 1;
113 if (setrlimit(RLIMIT_CPU, &rl) == -1) {
Robert Swieckic6a48b12016-03-11 17:41:57 +0100114 PLOG_D("Couldn't enforce the RLIMIT_CPU resource limit");
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100115 }
116 }
117
118 /*
119 * The address space limit. If big enough - roughly the size of RAM used
120 */
121 if (hfuzz->asLimit) {
Jagger06a4bbc2016-03-10 21:19:23 +0100122 struct rlimit rl = {
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100123 .rlim_cur = hfuzz->asLimit * 1024ULL * 1024ULL,
124 .rlim_max = hfuzz->asLimit * 1024ULL * 1024ULL,
125 };
Jagger06a4bbc2016-03-10 21:19:23 +0100126 if (setrlimit(RLIMIT_AS, &rl) == -1) {
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100127 PLOG_D("Couldn't enforce the RLIMIT_AS resource limit, ignoring");
128 }
129 }
130
131 if (hfuzz->nullifyStdio) {
132 util_nullifyStdio();
133 }
134
135 if (hfuzz->fuzzStdin) {
136 /*
137 * Uglyyyyyy ;)
138 */
139 if (!util_redirectStdin(fileName)) {
140 return false;
141 }
142 }
143
Jagger80041fe2016-03-10 21:32:35 +0100144 if (hfuzz->clearEnv) {
Jagger1e05f742016-03-10 21:36:27 +0100145 environ = NULL;
Jagger80041fe2016-03-10 21:32:35 +0100146 }
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100147 if (sancov_prepareExecve(hfuzz) == false) {
148 LOG_E("sancov_prepareExecve() failed");
149 return false;
150 }
151 for (size_t i = 0; i < ARRAYSIZE(hfuzz->envs) && hfuzz->envs[i]; i++) {
152 putenv(hfuzz->envs[i]);
153 }
154 setsid();
155
156 return true;
157}
158
Robert Swieckia96d78d2016-03-14 16:50:50 +0100159static bool fuzz_prepareFileDynamically(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000160{
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100161 struct dynfile_t *dynfile;
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100162
163 {
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100164 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Robert Swiecki4b0390a2016-03-14 18:44:05 +0100165
Jaggerb070b812016-03-15 05:31:30 +0100166 if (hfuzz->dynfileqCnt == 0) {
Jaggere4496512016-03-16 01:55:46 +0100167 LOG_F("The dynamic file corpus is empty. Apparently, the initial fuzzing of the "
168 "provided file corpus (-f) has not produced any follow-up files with positive "
169 "coverage and/or CPU counters");
Jaggerb070b812016-03-15 05:31:30 +0100170 }
171
Robert Swiecki4b0390a2016-03-14 18:44:05 +0100172 size_t i = 0U;
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100173 size_t dynFilePos = util_rndGet(0, hfuzz->dynfileqCnt - 1);
174 TAILQ_FOREACH(dynfile, &hfuzz->dynfileq, pointers) {
175 if (i++ == dynFilePos) {
176 break;
177 }
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100178 }
179 }
180
181 memcpy(fuzzer->dynamicFile, dynfile->data, dynfile->size);
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100182 fuzzer->dynamicFileSz = dynfile->size;
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100183
Anestis Bechtsoudis6ef24e42016-01-13 13:05:53 +0200184 mangle_Resize(hfuzz, fuzzer->dynamicFile, &fuzzer->dynamicFileSz);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100185 mangle_mangleContent(hfuzz, fuzzer);
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000186
robert.swiecki@gmail.comdc8403e2015-03-01 01:33:00 +0000187 if (files_writeBufToFile
robert.swiecki@gmail.com62e34ae2015-03-05 03:39:32 +0000188 (fuzzer->fileName, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
189 O_WRONLY | O_CREAT | O_EXCL | O_TRUNC) == false) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200190 LOG_E("Couldn't write buffer to file '%s'", fuzzer->fileName);
robert.swiecki@gmail.com3b6c6292015-02-26 11:48:46 +0000191 return false;
192 }
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000193
robert.swiecki@gmail.com6d6f7562015-02-17 22:18:51 +0000194 return true;
robert.swiecki@gmail.comd7aed312015-02-03 21:26:37 +0000195}
196
robert.swiecki@gmail.com4a7a9d82015-03-01 01:25:16 +0000197static bool fuzz_prepareFile(honggfuzz_t * hfuzz, fuzzer_t * fuzzer, int rnd_index)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000198{
robert.swiecki@gmail.com4a7a9d82015-03-01 01:25:16 +0000199 size_t fileSz =
200 files_readFileToBufMax(hfuzz->files[rnd_index], fuzzer->dynamicFile, hfuzz->maxFileSz);
201 if (fileSz == 0UL) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200202 LOG_E("Couldn't read contents of '%s'", hfuzz->files[rnd_index]);
robert.swiecki@gmail.combb5d2642015-02-25 20:00:00 +0000203 return false;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000204 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100205 fuzzer->dynamicFileSz = fileSz;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000206
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200207 /* If flip rate is 0.0, early abort file mangling */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100208 if (fuzzer->flipRate != 0.0L) {
209 mangle_Resize(hfuzz, fuzzer->dynamicFile, &fuzzer->dynamicFileSz);
210 mangle_mangleContent(hfuzz, fuzzer);
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200211 }
robert.swiecki@gmail.comc070b942015-02-25 18:29:19 +0000212
robert.swiecki@gmail.comdc8403e2015-03-01 01:33:00 +0000213 if (files_writeBufToFile
Robert Swieckia96d78d2016-03-14 16:50:50 +0100214 (fuzzer->fileName, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
215 O_WRONLY | O_CREAT | O_EXCL) == false) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200216 LOG_E("Couldn't write buffer to file '%s'", fuzzer->fileName);
robert.swiecki@gmail.come7680522015-02-22 22:22:37 +0000217 return false;
218 }
219
robert.swiecki3bb518c2010-10-14 00:48:24 +0000220 return true;
221}
222
robert.swiecki@gmail.com20851202015-03-01 01:48:15 +0000223static bool fuzz_prepareFileExternally(honggfuzz_t * hfuzz, fuzzer_t * fuzzer, int rnd_index)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000224{
Robert Swieckie48811e2016-03-09 18:31:19 +0100225 {
226 int dstfd = open(fuzzer->fileName, O_CREAT | O_EXCL | O_RDWR, 0644);
227 if (dstfd == -1) {
228 PLOG_E("Couldn't create a temporary file '%s'", fuzzer->fileName);
robert.swiecki@gmail.comebc1cac2011-07-02 03:15:51 +0000229 return false;
230 }
Jagger28aebbd2016-03-10 22:58:51 +0100231 DEFER(close(dstfd));
robert.swiecki@gmail.comebc1cac2011-07-02 03:15:51 +0000232
Robert Swieckie48811e2016-03-09 18:31:19 +0100233 LOG_D("Created '%s' as an input file", fuzzer->fileName);
234
235 if (hfuzz->inputFile) {
236 size_t fileSz = files_readFileToBufMax(hfuzz->files[rnd_index], fuzzer->dynamicFile,
237 hfuzz->maxFileSz);
238 if (fileSz == 0UL) {
239 LOG_E("Couldn't read '%s'", hfuzz->files[rnd_index]);
240 unlink(fuzzer->fileName);
241 return false;
242 }
243
244 if (files_writeToFd(dstfd, fuzzer->dynamicFile, fileSz) == false) {
245 unlink(fuzzer->fileName);
246 return false;
247 }
robert.swiecki@gmail.comebc1cac2011-07-02 03:15:51 +0000248 }
robert.swiecki3d505e22010-10-14 01:17:17 +0000249
Robert Swieckie48811e2016-03-09 18:31:19 +0100250 }
robert.swiecki3d505e22010-10-14 01:17:17 +0000251
Anestis Bechtsoudis3541b472015-10-08 09:52:44 -0700252 pid_t pid = arch_fork(hfuzz);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000253 if (pid == -1) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200254 PLOG_E("Couldn't fork");
robert.swiecki3bb518c2010-10-14 00:48:24 +0000255 return false;
256 }
257
258 if (!pid) {
259 /*
robert.swiecki@gmail.comcdf18f92015-02-11 22:22:18 +0000260 * child performs the external file modifications
robert.swiecki3bb518c2010-10-14 00:48:24 +0000261 */
robert.swiecki@gmail.com20851202015-03-01 01:48:15 +0000262 execl(hfuzz->externalCommand, hfuzz->externalCommand, fuzzer->fileName, NULL);
Robert Swieckic8c32db2015-10-09 18:06:22 +0200263 PLOG_F("Couldn't execute '%s %s'", hfuzz->externalCommand, fuzzer->fileName);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000264 return false;
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000265 }
robert.swiecki@gmail.com8a9df0e2015-02-13 17:08:06 +0000266
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000267 /*
268 * parent waits until child is done fuzzing the input file
269 */
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000270 int childStatus;
271 int flags = 0;
robert.swiecki@gmail.coma2291182015-02-13 16:56:27 +0000272#if defined(__WNOTHREAD)
273 flags |= __WNOTHREAD;
robert.swiecki@gmail.com8a9df0e2015-02-13 17:08:06 +0000274#endif /* defined(__WNOTHREAD) */
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000275 while (wait4(pid, &childStatus, flags, NULL) != pid) ;
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000276 if (WIFEXITED(childStatus)) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200277 LOG_D("External command exited with status %d", WEXITSTATUS(childStatus));
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000278 return true;
279 }
280 if (WIFSIGNALED(childStatus)) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200281 LOG_E("External command terminated with signal %d", WTERMSIG(childStatus));
robert.swiecki3d505e22010-10-14 01:17:17 +0000282 return false;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000283 }
Robert Swieckic8c32db2015-10-09 18:06:22 +0200284 LOG_F("External command terminated abnormally, status: %d", childStatus);
robert.swiecki@gmail.com757ee192015-02-13 16:54:02 +0000285 return false;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000286}
287
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300288static bool fuzz_runVerifier(honggfuzz_t * hfuzz, fuzzer_t * crashedFuzzer)
289{
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300290 int crashFd = -1;
291 uint8_t *crashBuf = NULL;
292 off_t crashFileSz = 0;
293
294 crashBuf = files_mapFile(crashedFuzzer->crashFileName, &crashFileSz, &crashFd, false);
295 if (crashBuf == NULL) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700296 LOG_E("Couldn't open and map '%s' in R/O mode", crashedFuzzer->crashFileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100297 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300298 }
Jagger28aebbd2016-03-10 22:58:51 +0100299 DEFER(munmap(crashBuf, crashFileSz));
300 DEFER(close(crashFd));
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300301
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700302 LOG_I("Launching verifier for %" PRIx64 " hash", crashedFuzzer->backtrace);
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300303 for (int i = 0; i < _HF_VERIFIER_ITER; i++) {
304 fuzzer_t vFuzzer = {
305 .pid = 0,
306 .timeStartedMillis = util_timeNowMillis(),
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300307 .crashFileName = {0},
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300308 .pc = 0ULL,
309 .backtrace = 0ULL,
310 .access = 0ULL,
311 .exception = 0,
312 .dynamicFileSz = 0,
313 .dynamicFile = NULL,
314 .hwCnts = {
315 .cpuInstrCnt = 0ULL,
316 .cpuBranchCnt = 0ULL,
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300317 .customCnt = 0ULL,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100318 .bbCnt = 0ULL,
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300319 },
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200320 .sanCovCnts = {
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200321 .hitBBCnt = 0ULL,
322 .totalBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200323 .dsoCnt = 0ULL,
324 .iDsoCnt = 0ULL,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200325 .newBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200326 .crashesCnt = 0ULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200327 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300328 .report = {'\0'},
Anestis Bechtsoudis6b9e83d2015-10-02 11:10:50 -0700329 .mainWorker = false
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300330 };
331
332 fuzz_getFileName(hfuzz, vFuzzer.fileName);
333 if (files_writeBufToFile
334 (vFuzzer.fileName, crashBuf, crashFileSz, O_WRONLY | O_CREAT | O_EXCL) == false) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700335 LOG_E("Couldn't write buffer to file '%s'", vFuzzer.fileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100336 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300337 }
338
Anestis Bechtsoudis3541b472015-10-08 09:52:44 -0700339 vFuzzer.pid = arch_fork(hfuzz);
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300340 if (vFuzzer.pid == -1) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700341 PLOG_F("Couldn't fork");
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300342 return false;
343 }
344
345 if (!vFuzzer.pid) {
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100346 if (fuzz_prepareExecve(hfuzz, crashedFuzzer->crashFileName) == false) {
347 LOG_E("fuzz_prepareExecve() failed");
Jagger2b97dc92016-03-10 04:28:18 +0100348 return false;
349 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300350 if (!arch_launchChild(hfuzz, crashedFuzzer->crashFileName)) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700351 LOG_E("Error launching verifier child process");
Robert Swieckie48811e2016-03-09 18:31:19 +0100352 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300353 }
354 }
355
356 arch_reapChild(hfuzz, &vFuzzer);
357 unlink(vFuzzer.fileName);
358
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300359 /* If stack hash doesn't match skip name tag and exit */
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300360 if (crashedFuzzer->backtrace != vFuzzer.backtrace) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700361 LOG_D("Verifier stack hash mismatch");
Robert Swieckie48811e2016-03-09 18:31:19 +0100362 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300363 }
364 }
365
366 /* Workspace is inherited, just append a extra suffix */
367 char verFile[PATH_MAX] = { 0 };
368 snprintf(verFile, sizeof(verFile), "%s.verified", crashedFuzzer->crashFileName);
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300369
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200370 /* Copy file with new suffix & remove original copy */
371 bool dstFileExists = false;
372 if (files_copyFile(crashedFuzzer->crashFileName, verFile, &dstFileExists)) {
373 LOG_I("Successfully verified, saving as (%s)", verFile);
Jaggerd34417d2016-03-16 01:26:54 +0100374 ATOMIC_POST_INC(hfuzz->verifiedCrashesCnt);
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200375 unlink(crashedFuzzer->crashFileName);
376 } else {
377 if (dstFileExists) {
378 LOG_I("It seems that '%s' already exists, skipping", verFile);
379 } else {
380 LOG_E("Couldn't copy '%s' to '%s'", crashedFuzzer->crashFileName, verFile);
Robert Swieckie48811e2016-03-09 18:31:19 +0100381 return false;
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200382 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300383 }
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300384
Robert Swieckie48811e2016-03-09 18:31:19 +0100385 return true;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300386}
387
Robert Swieckia4a68052016-03-17 16:51:01 +0100388static void fuzz_addFileToFileQLocked(honggfuzz_t * hfuzz, uint8_t * data, size_t size,
389 uint64_t cov)
Robert Swieckif3534bb2016-03-14 18:55:10 +0100390{
Robert Swiecki7084e652016-03-14 19:47:00 +0100391 struct dynfile_t *dynfile = (struct dynfile_t *)util_Malloc(sizeof(struct dynfile_t));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100392 dynfile->size = size;
Robert Swiecki7084e652016-03-14 19:47:00 +0100393 dynfile->data = (uint8_t *) util_Malloc(size);
Robert Swieckif3534bb2016-03-14 18:55:10 +0100394 memcpy(dynfile->data, data, size);
395 TAILQ_INSERT_TAIL(&hfuzz->dynfileq, dynfile, pointers);
396 hfuzz->dynfileqCnt++;
397
398 char fname[PATH_MAX];
Robert Swieckia4a68052016-03-17 16:51:01 +0100399 snprintf(fname, sizeof(fname),
400 "%s/COVERAGE.PID.%d.COVBB.%09" PRId64 ".TIME.%" PRIu64 ".RND.%" PRIx64, hfuzz->workDir,
401 getpid(), cov, (uint64_t) time(NULL), util_rndGet(0, 0xFFFFFFFFFFFF));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100402 if (files_writeBufToFile(fname, data, size, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC) == false) {
403 LOG_W("Couldn't write buffer to file '%s'", fname);
404 }
405}
406
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200407static void fuzz_perfFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
408{
409 LOG_D
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100410 ("New file size: %zu, Perf feedback new/cur (instr,branch): %" PRIu64 "/%" PRIu64 ",%"
411 PRIu64 "/%" PRIu64 ", BBcnt new/total: %" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
412 fuzzer->hwCnts.cpuInstrCnt, hfuzz->hwCnts.cpuInstrCnt, fuzzer->hwCnts.cpuBranchCnt,
413 hfuzz->hwCnts.cpuBranchCnt, fuzzer->hwCnts.bbCnt, hfuzz->hwCnts.bbCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200414
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100415 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200416
417 int64_t diff0 = hfuzz->hwCnts.cpuInstrCnt - fuzzer->hwCnts.cpuInstrCnt;
418 int64_t diff1 = hfuzz->hwCnts.cpuBranchCnt - fuzzer->hwCnts.cpuBranchCnt;
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100419 int64_t diff2 = hfuzz->hwCnts.customCnt - fuzzer->hwCnts.customCnt;
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200420
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100421 if (diff0 < 0 || diff1 < 0 || diff2 < 0 || fuzzer->hwCnts.bbCnt > 0) {
Robert Swieckif3534bb2016-03-14 18:55:10 +0100422 LOG_I
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100423 ("New file size: %zu, Perf feedback new/cur (instr,branch): %" PRIu64 "/%" PRIu64 ",%"
424 PRIu64 "/%" PRIu64 ", BBcnt new/total: %" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
425 fuzzer->hwCnts.cpuInstrCnt, hfuzz->hwCnts.cpuInstrCnt, fuzzer->hwCnts.cpuBranchCnt,
426 hfuzz->hwCnts.cpuBranchCnt, fuzzer->hwCnts.bbCnt, hfuzz->hwCnts.bbCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200427
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200428 hfuzz->hwCnts.cpuInstrCnt = fuzzer->hwCnts.cpuInstrCnt;
429 hfuzz->hwCnts.cpuBranchCnt = fuzzer->hwCnts.cpuBranchCnt;
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200430 hfuzz->hwCnts.customCnt = fuzzer->hwCnts.customCnt;
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100431 hfuzz->hwCnts.bbCnt += fuzzer->hwCnts.bbCnt;
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200432
Robert Swieckia4a68052016-03-17 16:51:01 +0100433 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
434 fuzzer->hwCnts.bbCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200435 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200436}
437
438static void fuzz_sanCovFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
439{
440 LOG_D
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100441 ("File size (Best/New): %zu, SanCov feedback (bb,dso): Best: [%" PRIu64
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200442 ",%" PRIu64 "] / New: [%" PRIu64 ",%" PRIu64 "], newBBs:%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100443 fuzzer->dynamicFileSz, hfuzz->sanCovCnts.hitBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200444 hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt, fuzzer->sanCovCnts.iDsoCnt,
445 fuzzer->sanCovCnts.newBBCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200446
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100447 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200448
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200449 /*
450 * Keep mutated seed if:
Robert Swiecki142f9412016-03-14 19:22:01 +0100451 * a) Newly discovered (not met before) BBs
452 * b) More instrumented DSOs loaded
Robert Swiecki23ec02a2016-01-19 18:47:45 +0100453 *
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200454 * TODO: (a) method can significantly assist to further improvements in interesting areas
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200455 * discovery if combined with seeds pool/queue support. If a runtime queue is maintained
456 * more interesting seeds can be saved between runs instead of instantly discarded
457 * based on current absolute elitism (only one mutated seed is promoted).
458 */
Robert Swiecki142f9412016-03-14 19:22:01 +0100459 if (fuzzer->sanCovCnts.newBBCnt > 0 || hfuzz->sanCovCnts.iDsoCnt < fuzzer->sanCovCnts.iDsoCnt) {
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100460 LOG_I("SanCov Update: file size (Cur): %zu, newBBs:%" PRIu64
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200461 ", counters (Cur,New): %" PRIu64 "/%" PRIu64 ",%" PRIu64 "/%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100462 fuzzer->dynamicFileSz, fuzzer->sanCovCnts.newBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200463 hfuzz->sanCovCnts.hitBBCnt, hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200464 fuzzer->sanCovCnts.iDsoCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200465
Robert Swiecki142f9412016-03-14 19:22:01 +0100466 hfuzz->sanCovCnts.hitBBCnt += fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200467 hfuzz->sanCovCnts.dsoCnt = fuzzer->sanCovCnts.dsoCnt;
468 hfuzz->sanCovCnts.iDsoCnt = fuzzer->sanCovCnts.iDsoCnt;
469 hfuzz->sanCovCnts.crashesCnt += fuzzer->sanCovCnts.crashesCnt;
Robert Swiecki142f9412016-03-14 19:22:01 +0100470 hfuzz->sanCovCnts.newBBCnt = fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200471
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200472 if (hfuzz->sanCovCnts.totalBBCnt < fuzzer->sanCovCnts.totalBBCnt) {
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200473 /* Keep only the max value (for dlopen cases) to measure total target coverage */
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200474 hfuzz->sanCovCnts.totalBBCnt = fuzzer->sanCovCnts.totalBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200475 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200476
Robert Swieckia4a68052016-03-17 16:51:01 +0100477 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
478 fuzzer->sanCovCnts.hitBBCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200479 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200480}
481
Robert Swiecki6d01e822016-03-15 20:21:46 +0100482static fuzzState_t fuzz_getState(honggfuzz_t * hfuzz)
483{
Jaggerd34417d2016-03-16 01:26:54 +0100484 return ATOMIC_GET(hfuzz->state);
Robert Swiecki6d01e822016-03-15 20:21:46 +0100485}
486
487static void fuzz_setState(honggfuzz_t * hfuzz, fuzzState_t state)
488{
Jaggerd34417d2016-03-16 01:26:54 +0100489 ATOMIC_SET(hfuzz->state, state);
Robert Swiecki6d01e822016-03-15 20:21:46 +0100490}
491
Jagger190f0dc2015-09-05 16:41:22 +0200492static void fuzz_fuzzLoop(honggfuzz_t * hfuzz)
493{
494 fuzzer_t fuzzer = {
495 .pid = 0,
496 .timeStartedMillis = util_timeNowMillis(),
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300497 .crashFileName = {0},
Jagger190f0dc2015-09-05 16:41:22 +0200498 .pc = 0ULL,
499 .backtrace = 0ULL,
500 .access = 0ULL,
501 .exception = 0,
Robert Swieckia96d78d2016-03-14 16:50:50 +0100502 .mainWorker = true,
503 .flipRate = hfuzz->origFlipRate,
504
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200505 .sanCovCnts = {
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200506 .hitBBCnt = 0ULL,
507 .totalBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200508 .dsoCnt = 0ULL,
509 .iDsoCnt = 0ULL,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200510 .newBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200511 .crashesCnt = 0ULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200512 },
Robert Swieckia96d78d2016-03-14 16:50:50 +0100513 .dynamicFileSz = 0,
Robert Swiecki7084e652016-03-14 19:47:00 +0100514 .dynamicFile = util_Malloc(hfuzz->maxFileSz),
Robert Swieckia96d78d2016-03-14 16:50:50 +0100515
516 .hwCnts = {
517 .cpuInstrCnt = 0ULL,
518 .cpuBranchCnt = 0ULL,
Robert Swieckia96d78d2016-03-14 16:50:50 +0100519 .customCnt = 0ULL,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100520 .bbCnt = 0ULL,
Robert Swieckia96d78d2016-03-14 16:50:50 +0100521 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300522 .report = {'\0'},
Jagger190f0dc2015-09-05 16:41:22 +0200523 };
Jagger28aebbd2016-03-10 22:58:51 +0100524 DEFER(free(fuzzer.dynamicFile));
Jagger190f0dc2015-09-05 16:41:22 +0200525
Anestis Bechtsoudis2013f252015-11-07 22:03:31 +0200526 size_t rnd_index = util_rndGet(0, hfuzz->fileCnt - 1);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200527
528 /* If dry run mode, pick the next file and not a random one */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100529 if (fuzzer.flipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100530 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200531 }
Robert Swiecki129afe82016-03-15 20:03:20 +0100532
Robert Swiecki6d01e822016-03-15 20:21:46 +0100533 if (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
Jaggerd34417d2016-03-16 01:26:54 +0100534 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100535 if (rnd_index >= hfuzz->fileCnt) {
Jagger33fd9522016-03-15 22:13:57 +0100536 /*
537 * The waiting logic (for the DYNAMIC_PRE phase to finish) should be based on cond-waits
538 * or mutexes, but it'd complicate code too much
539 */
Robert Swiecki6d01e822016-03-15 20:21:46 +0100540 while (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
541 sleep(1);
Robert Swiecki129afe82016-03-15 20:03:20 +0100542 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100543 }
544 }
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200545
Jagger33fd9522016-03-15 22:13:57 +0100546 fuzzState_t state = fuzz_getState(hfuzz);
547 if (state == _HF_STATE_DYNAMIC_MAIN) {
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100548 strncpy(fuzzer.origFileName, "DYNAMIC", PATH_MAX);
549 } else {
550 strncpy(fuzzer.origFileName, files_basename(hfuzz->files[rnd_index]), PATH_MAX);
551 }
Robert Swiecki6d01e822016-03-15 20:21:46 +0100552
Jagger190f0dc2015-09-05 16:41:22 +0200553 fuzz_getFileName(hfuzz, fuzzer.fileName);
554
Robert Swiecki6d01e822016-03-15 20:21:46 +0100555 if (state == _HF_STATE_DYNAMIC_MAIN) {
Robert Swieckia96d78d2016-03-14 16:50:50 +0100556 if (!fuzz_prepareFileDynamically(hfuzz, &fuzzer)) {
557 exit(EXIT_FAILURE);
558 }
Robert Swiecki6d01e822016-03-15 20:21:46 +0100559 } else if (state == _HF_STATE_DYNAMIC_PRE) {
Robert Swiecki129afe82016-03-15 20:03:20 +0100560 fuzzer.flipRate = 0.0f;
Robert Swieckia96d78d2016-03-14 16:50:50 +0100561 if (!fuzz_prepareFile(hfuzz, &fuzzer, rnd_index)) {
Jagger190f0dc2015-09-05 16:41:22 +0200562 exit(EXIT_FAILURE);
563 }
564 } else if (hfuzz->externalCommand != NULL) {
565 if (!fuzz_prepareFileExternally(hfuzz, &fuzzer, rnd_index)) {
566 exit(EXIT_FAILURE);
567 }
568 } else {
569 if (!fuzz_prepareFile(hfuzz, &fuzzer, rnd_index)) {
570 exit(EXIT_FAILURE);
571 }
572 }
573
Robert Swiecki1df61a92015-10-08 17:26:06 +0200574 fuzzer.pid = arch_fork(hfuzz);
Jagger190f0dc2015-09-05 16:41:22 +0200575 if (fuzzer.pid == -1) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200576 PLOG_F("Couldn't fork");
Jagger190f0dc2015-09-05 16:41:22 +0200577 exit(EXIT_FAILURE);
578 }
579
580 if (!fuzzer.pid) {
Robert Swiecki1e1b3532016-03-10 18:43:28 +0100581 if (!fuzz_prepareExecve(hfuzz, fuzzer.fileName)) {
582 LOG_E("fuzz_prepareExecve() failed");
Jaggerbb83e7c2016-03-10 04:33:40 +0100583 exit(EXIT_FAILURE);
584 }
Jagger190f0dc2015-09-05 16:41:22 +0200585 if (!arch_launchChild(hfuzz, fuzzer.fileName)) {
Jagger4e10da32016-03-10 23:13:50 +0100586 LOG_E("Error launching child process");
Jagger190f0dc2015-09-05 16:41:22 +0200587 exit(EXIT_FAILURE);
588 }
589 }
590
Robert Swieckic8c32db2015-10-09 18:06:22 +0200591 LOG_D("Launched new process, pid: %d, (concurrency: %zd)", fuzzer.pid, hfuzz->threadsMax);
Jagger190f0dc2015-09-05 16:41:22 +0200592
593 arch_reapChild(hfuzz, &fuzzer);
594 unlink(fuzzer.fileName);
595
596 if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200597 fuzz_perfFeedback(hfuzz, &fuzzer);
598 } else if (hfuzz->useSanCov) {
599 fuzz_sanCovFeedback(hfuzz, &fuzzer);
Jagger190f0dc2015-09-05 16:41:22 +0200600 }
601
Anestis Bechtsoudisc45db7f2015-11-30 16:44:58 +0200602 if (hfuzz->useVerifier && (fuzzer.crashFileName[0] != 0) && fuzzer.backtrace) {
Anestis Bechtsoudis3085f222015-09-27 18:35:26 +0300603 if (!fuzz_runVerifier(hfuzz, &fuzzer)) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700604 LOG_I("Failed to verify %s", fuzzer.crashFileName);
Anestis Bechtsoudis3085f222015-09-27 18:35:26 +0300605 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300606 }
607
Jagger190f0dc2015-09-05 16:41:22 +0200608 report_Report(hfuzz, fuzzer.report);
Robert Swiecki05354ca2016-03-15 19:10:23 +0100609
Jaggerd34417d2016-03-16 01:26:54 +0100610 if (state == _HF_STATE_DYNAMIC_PRE && ATOMIC_PRE_INC(hfuzz->doneFileIndex) >= hfuzz->fileCnt) {
Robert Swiecki6d01e822016-03-15 20:21:46 +0100611 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_MAIN);
Robert Swiecki05354ca2016-03-15 19:10:23 +0100612 }
Jagger190f0dc2015-09-05 16:41:22 +0200613}
614
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000615static void *fuzz_threadNew(void *arg)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000616{
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000617 honggfuzz_t *hfuzz = (honggfuzz_t *) arg;
Anestis Bechtsoudis02b99be2015-12-27 11:53:01 +0200618
Robert Swieckia96d78d2016-03-14 16:50:50 +0100619 for (;;) {
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200620 /* Check if dry run mode with verifier enabled */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100621 if (hfuzz->origFlipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100622 if (ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->fileCnt) {
623 ATOMIC_POST_INC(hfuzz->threadsFinished);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200624 // All files checked, weak-up the main process
625 pthread_kill(fuzz_mainThread, SIGALRM);
626 return NULL;
627 }
628 }
629 /* Check for max iterations limit if set */
Jaggerd34417d2016-03-16 01:26:54 +0100630 else if ((ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->mutationsMax)
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200631 && hfuzz->mutationsMax) {
Jaggerd34417d2016-03-16 01:26:54 +0100632 ATOMIC_POST_INC(hfuzz->threadsFinished);
Robert Swiecki81c6a0d2015-09-08 15:43:20 +0200633 // Wake-up the main process
Jagger6113c432015-09-24 05:00:28 +0200634 pthread_kill(fuzz_mainThread, SIGALRM);
Jaggerea39a8f2015-09-05 00:57:22 +0200635 return NULL;
636 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000637
Jagger190f0dc2015-09-05 16:41:22 +0200638 fuzz_fuzzLoop(hfuzz);
robert.swiecki@gmail.comd4dd4df2015-02-18 00:50:12 +0000639 }
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000640}
641
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000642static void fuzz_runThread(honggfuzz_t * hfuzz, void *(*thread) (void *))
643{
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000644 pthread_attr_t attr;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000645
robert.swiecki@gmail.com6f5c2392015-02-16 18:13:09 +0000646 pthread_attr_init(&attr);
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000647 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
robert.swiecki@gmail.com441089a2015-02-23 13:14:07 +0000648 pthread_attr_setstacksize(&attr, _HF_PTHREAD_STACKSIZE);
robert.swiecki@gmail.com011981f2015-02-17 19:06:44 +0000649 pthread_attr_setguardsize(&attr, (size_t) sysconf(_SC_PAGESIZE));
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000650
robert.swiecki@gmail.com01b6dd42015-02-16 18:11:28 +0000651 pthread_t t;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000652 if (pthread_create(&t, &attr, thread, (void *)hfuzz) < 0) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200653 PLOG_F("Couldn't create a new thread");
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000654 }
655
656 return;
657}
658
Jagger08816fd2016-03-11 01:32:38 +0100659void fuzz_threads(honggfuzz_t * hfuzz)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000660{
Jagger6113c432015-09-24 05:00:28 +0200661 fuzz_mainThread = pthread_self();
662
robert.swiecki@gmail.com956276a2015-04-16 16:51:52 +0000663 if (!arch_archInit(hfuzz)) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200664 LOG_F("Couldn't prepare arch for fuzzing");
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000665 }
Jagger00265602016-03-10 02:36:27 +0100666 if (!sancov_Init(hfuzz)) {
667 LOG_F("Couldn't prepare sancov options");
668 }
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000669
Robert Swieckia96d78d2016-03-14 16:50:50 +0100670 if (hfuzz->useSanCov || hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Jaggerebe19292016-03-17 00:11:44 +0100671 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_PRE);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100672 } else {
Jaggerebe19292016-03-17 00:11:44 +0100673 fuzz_setState(hfuzz, _HF_STATE_STATIC);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100674 }
675
Jaggerea39a8f2015-09-05 00:57:22 +0200676 for (size_t i = 0; i < hfuzz->threadsMax; i++) {
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000677 fuzz_runThread(hfuzz, fuzz_threadNew);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000678 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000679}