blob: 15bfa6da1bd53ee4879145494431b09dc1fe18f3 [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{
Jagger1aa94d72016-04-02 02:37:35 +0200106 ssize_t fileSz =
robert.swiecki@gmail.com4a7a9d82015-03-01 01:25:16 +0000107 files_readFileToBufMax(hfuzz->files[rnd_index], fuzzer->dynamicFile, hfuzz->maxFileSz);
Jagger1aa94d72016-04-02 02:37:35 +0200108 if (fileSz < 0) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200109 LOG_E("Couldn't read contents of '%s'", hfuzz->files[rnd_index]);
robert.swiecki@gmail.combb5d2642015-02-25 20:00:00 +0000110 return false;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000111 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100112 fuzzer->dynamicFileSz = fileSz;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000113
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200114 /* If flip rate is 0.0, early abort file mangling */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100115 if (fuzzer->flipRate != 0.0L) {
116 mangle_Resize(hfuzz, fuzzer->dynamicFile, &fuzzer->dynamicFileSz);
117 mangle_mangleContent(hfuzz, fuzzer);
Anestis Bechtsoudis25262b32015-11-07 22:39:47 +0200118 }
robert.swiecki@gmail.comc070b942015-02-25 18:29:19 +0000119
Jagger1d743382016-04-02 02:09:41 +0200120 if (hfuzz->persistent == false && files_writeBufToFile
Robert Swieckia96d78d2016-03-14 16:50:50 +0100121 (fuzzer->fileName, fuzzer->dynamicFile, fuzzer->dynamicFileSz,
Jagger5a3c4c32016-04-16 19:27:47 +0200122 O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC) == false) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200123 LOG_E("Couldn't write buffer to file '%s'", fuzzer->fileName);
robert.swiecki@gmail.come7680522015-02-22 22:22:37 +0000124 return false;
125 }
126
robert.swiecki3bb518c2010-10-14 00:48:24 +0000127 return true;
128}
129
Jaggera34b3022016-04-02 02:20:40 +0200130static bool fuzz_prepareFileExternally(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000131{
Jagger5a3c4c32016-04-16 19:27:47 +0200132 int dstfd = open(fuzzer->fileName, O_CREAT | O_EXCL | O_RDWR | O_CLOEXEC, 0644);
Jaggera34b3022016-04-02 02:20:40 +0200133 if (dstfd == -1) {
134 PLOG_E("Couldn't create a temporary file '%s'", fuzzer->fileName);
135 return false;
Robert Swieckie48811e2016-03-09 18:31:19 +0100136 }
Jaggera34b3022016-04-02 02:20:40 +0200137 close(dstfd);
138
139 LOG_D("Created '%s' as an input file", fuzzer->fileName);
robert.swiecki3d505e22010-10-14 01:17:17 +0000140
Robert Swiecki54333cd2016-09-07 17:51:48 +0200141 const char *const argv[] = { hfuzz->externalCommand, fuzzer->fileName, NULL };
142 if (subproc_System(argv) != 0) {
143 LOG_E("Subprocess '%s' returned abnormally", hfuzz->externalCommand);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000144 return false;
145 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200146 LOG_D("Subporcess '%s' finished with success", hfuzz->externalCommand);
Jagger1d743382016-04-02 02:09:41 +0200147
148 ssize_t rsz = files_readFileToBufMax(fuzzer->fileName, fuzzer->dynamicFile, hfuzz->maxFileSz);
Jagger1aa94d72016-04-02 02:37:35 +0200149 if (rsz < 0) {
Jagger1d743382016-04-02 02:09:41 +0200150 LOG_W("Couldn't read back '%s' to the buffer", fuzzer->fileName);
151 return false;
152 }
153 fuzzer->dynamicFileSz = rsz;
154
155 if (hfuzz->persistent) {
156 unlink(fuzzer->fileName);
157 }
158
159 return true;
robert.swiecki3bb518c2010-10-14 00:48:24 +0000160}
161
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300162static bool fuzz_runVerifier(honggfuzz_t * hfuzz, fuzzer_t * crashedFuzzer)
163{
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300164 int crashFd = -1;
165 uint8_t *crashBuf = NULL;
166 off_t crashFileSz = 0;
167
168 crashBuf = files_mapFile(crashedFuzzer->crashFileName, &crashFileSz, &crashFd, false);
169 if (crashBuf == NULL) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700170 LOG_E("Couldn't open and map '%s' in R/O mode", crashedFuzzer->crashFileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100171 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300172 }
Jagger4fe18692016-04-22 23:15:07 +0200173 defer {
174 munmap(crashBuf, crashFileSz);
Jagger4fe18692016-04-22 23:15:07 +0200175 close(crashFd);
176 };
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300177
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700178 LOG_I("Launching verifier for %" PRIx64 " hash", crashedFuzzer->backtrace);
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300179 for (int i = 0; i < _HF_VERIFIER_ITER; i++) {
180 fuzzer_t vFuzzer = {
181 .pid = 0,
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300182 .persistentPid = 0,
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300183 .timeStartedMillis = util_timeNowMillis(),
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300184 .crashFileName = {0},
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300185 .pc = 0ULL,
186 .backtrace = 0ULL,
187 .access = 0ULL,
188 .exception = 0,
189 .dynamicFileSz = 0,
190 .dynamicFile = NULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200191 .sanCovCnts = {
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200192 .hitBBCnt = 0ULL,
193 .totalBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200194 .dsoCnt = 0ULL,
195 .iDsoCnt = 0ULL,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200196 .newBBCnt = 0ULL,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200197 .crashesCnt = 0ULL,
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200198 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300199 .report = {'\0'},
Jaggerb2c1fad2016-03-17 23:37:10 +0100200 .mainWorker = false,
Jaggerfa3544a2016-08-30 02:55:55 +0200201 .fuzzNo = crashedFuzzer->fuzzNo,
Jagger93253f72016-09-01 22:40:12 +0200202 .persistentSock = -1,
Jaggerb2c1fad2016-03-17 23:37:10 +0100203
Jagger2381ef42016-03-20 23:32:05 +0100204 .linux = {
205 .hwCnts = {
206 .cpuInstrCnt = 0ULL,
207 .cpuBranchCnt = 0ULL,
208 .customCnt = 0ULL,
209 .bbCnt = 0ULL,
210 .newBBCnt = 0ULL,
Jagger34789a72016-09-08 00:36:09 +0200211 .softCntPc = 0ULL,
212 .softCntCmp = 0ULL,
Jagger2381ef42016-03-20 23:32:05 +0100213 },
214 .perfMmapBuf = NULL,
215 .perfMmapAux = NULL,
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300216 .attachedPid = 0,
Jagger2381ef42016-03-20 23:32:05 +0100217 },
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300218 };
219
Anestis Bechtsoudis92b97042016-04-27 12:34:19 +0300220 if (arch_archThreadInit(hfuzz, &vFuzzer) == false) {
221 LOG_F("Could not initialize the thread");
222 }
223
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300224 fuzz_getFileName(hfuzz, vFuzzer.fileName);
225 if (files_writeBufToFile
Jagger33cce5d2016-04-16 20:10:36 +0200226 (vFuzzer.fileName, crashBuf, crashFileSz,
227 O_WRONLY | O_CREAT | O_EXCL | O_CLOEXEC) == false) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700228 LOG_E("Couldn't write buffer to file '%s'", vFuzzer.fileName);
Robert Swieckie48811e2016-03-09 18:31:19 +0100229 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300230 }
231
Jaggerd1fc9ed2016-09-02 01:06:51 +0200232 if (subproc_New(hfuzz, &vFuzzer) == false) {
Jagger93253f72016-09-01 22:40:12 +0200233 PLOG_F("subproc_New()");
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300234 }
Jaggerd1fc9ed2016-09-02 01:06:51 +0200235 subproc_Run(hfuzz, &vFuzzer);
Robert Swieckia8b8cb82016-08-17 18:27:08 +0200236
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300237 /* If stack hash doesn't match skip name tag and exit */
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300238 if (crashedFuzzer->backtrace != vFuzzer.backtrace) {
Anestis Bechtsoudis0cde66f2015-10-11 19:37:11 -0700239 LOG_D("Verifier stack hash mismatch");
Robert Swieckie48811e2016-03-09 18:31:19 +0100240 return false;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300241 }
242 }
243
244 /* Workspace is inherited, just append a extra suffix */
245 char verFile[PATH_MAX] = { 0 };
246 snprintf(verFile, sizeof(verFile), "%s.verified", crashedFuzzer->crashFileName);
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300247
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200248 /* Copy file with new suffix & remove original copy */
249 bool dstFileExists = false;
250 if (files_copyFile(crashedFuzzer->crashFileName, verFile, &dstFileExists)) {
251 LOG_I("Successfully verified, saving as (%s)", verFile);
Jaggerd34417d2016-03-16 01:26:54 +0100252 ATOMIC_POST_INC(hfuzz->verifiedCrashesCnt);
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200253 unlink(crashedFuzzer->crashFileName);
254 } else {
255 if (dstFileExists) {
256 LOG_I("It seems that '%s' already exists, skipping", verFile);
257 } else {
258 LOG_E("Couldn't copy '%s' to '%s'", crashedFuzzer->crashFileName, verFile);
Robert Swieckie48811e2016-03-09 18:31:19 +0100259 return false;
Anestis Bechtsoudisd86e6602015-11-07 18:34:06 +0200260 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300261 }
Anestis Bechtsoudisecb0a662015-09-27 18:19:46 +0300262
Robert Swieckie48811e2016-03-09 18:31:19 +0100263 return true;
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300264}
265
Jagger3c7e7ce2016-09-25 16:05:19 +0200266static fuzzState_t fuzz_getState(honggfuzz_t * hfuzz)
267{
268 return ATOMIC_GET(hfuzz->state);
269}
270
271static void fuzz_setState(honggfuzz_t * hfuzz, fuzzState_t state)
272{
273 ATOMIC_SET(hfuzz->state, state);
274}
275
Robert Swieckid258ff82016-08-29 17:54:20 +0200276static void fuzz_addFileToFileQLocked(honggfuzz_t * hfuzz, uint8_t * data, size_t size)
Robert Swieckif3534bb2016-03-14 18:55:10 +0100277{
Robert Swiecki7084e652016-03-14 19:47:00 +0100278 struct dynfile_t *dynfile = (struct dynfile_t *)util_Malloc(sizeof(struct dynfile_t));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100279 dynfile->size = size;
Robert Swiecki7084e652016-03-14 19:47:00 +0100280 dynfile->data = (uint8_t *) util_Malloc(size);
Robert Swieckif3534bb2016-03-14 18:55:10 +0100281 memcpy(dynfile->data, data, size);
282 TAILQ_INSERT_TAIL(&hfuzz->dynfileq, dynfile, pointers);
283 hfuzz->dynfileqCnt++;
284
Jagger3c7e7ce2016-09-25 16:05:19 +0200285 /* No need to add new coverage if we are supposed to append new coverage-inducing inputs only */
Jagger1b2d4822016-09-25 16:19:45 +0200286 if (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE && hfuzz->covDir == NULL) {
287 LOG_D("New coverage found, but we're in the initial coverage assessment state. Skipping");
Jagger3c7e7ce2016-09-25 16:05:19 +0200288 return;
289 }
290
Jaggerb30b4812016-09-25 16:34:15 +0200291 char tmstr[512];
292 util_getLocalTime("%Y%e%d.%H%M%S", tmstr, sizeof(tmstr), time(NULL));
Robert Swieckif3534bb2016-03-14 18:55:10 +0100293 char fname[PATH_MAX];
Jagger1b2d4822016-09-25 16:19:45 +0200294 if (hfuzz->covDir == NULL) {
Jaggerb30b4812016-09-25 16:34:15 +0200295 snprintf(fname, sizeof(fname), "%s/TIME.%s.ITER.%" PRIu64 ".RND.%" PRIx64 ".HONGGFUZZ.COV",
Jaggerc44a89a2016-09-25 16:42:44 +0200296 hfuzz->inputDir, tmstr, (uint64_t) ATOMIC_GET(hfuzz->mutationsCnt), util_rnd64());
Jagger3c7e7ce2016-09-25 16:05:19 +0200297 } else {
Jaggerb30b4812016-09-25 16:34:15 +0200298 snprintf(fname, sizeof(fname), "%s/TIME.%s.ITER.%" PRIu64 ".RND.%" PRIx64 ".HONGGFUZZ.COV",
Jaggerc44a89a2016-09-25 16:42:44 +0200299 hfuzz->covDir, tmstr, (uint64_t) ATOMIC_GET(hfuzz->mutationsCnt), util_rnd64());
Jagger3c7e7ce2016-09-25 16:05:19 +0200300 }
301
Jagger33cce5d2016-04-16 20:10:36 +0200302 if (files_writeBufToFile(fname, data, size, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC | O_CLOEXEC)
303 == false) {
Robert Swieckif3534bb2016-03-14 18:55:10 +0100304 LOG_W("Couldn't write buffer to file '%s'", fname);
305 }
306}
307
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200308static void fuzz_perfFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
309{
310 LOG_D
Jagger395df022016-08-21 01:13:25 +0200311 ("New file size: %zu, Perf feedback new/cur (instr,branch): %" PRIu64 "/%" PRIu64 "/%"
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100312 PRIu64 "/%" PRIu64 ", BBcnt new/total: %" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
Jagger247c3b42016-03-21 23:24:05 +0100313 fuzzer->linux.hwCnts.cpuInstrCnt, hfuzz->linux.hwCnts.cpuInstrCnt,
314 fuzzer->linux.hwCnts.cpuBranchCnt, hfuzz->linux.hwCnts.cpuBranchCnt,
315 fuzzer->linux.hwCnts.newBBCnt, hfuzz->linux.hwCnts.bbCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200316
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100317 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200318
Jagger34789a72016-09-08 00:36:09 +0200319 uint64_t softCntPc = 0UL;
320 uint64_t softCntCmp = 0UL;
Jagger251d0192016-08-24 00:54:04 +0200321 if (hfuzz->bbFd != -1) {
Jagger34789a72016-09-08 00:36:09 +0200322 softCntPc = ATOMIC_GET(hfuzz->feedback->pidFeedbackPc[fuzzer->fuzzNo]);
323 ATOMIC_CLEAR(hfuzz->feedback->pidFeedbackPc[fuzzer->fuzzNo]);
324 softCntCmp = ATOMIC_GET(hfuzz->feedback->pidFeedbackCmp[fuzzer->fuzzNo]);
325 ATOMIC_CLEAR(hfuzz->feedback->pidFeedbackCmp[fuzzer->fuzzNo]);
Jagger251d0192016-08-24 00:54:04 +0200326 }
Jaggerb01aaae2016-08-20 03:35:38 +0200327
Jagger302c2ea2016-09-07 03:54:43 +0200328 int64_t diff0 = hfuzz->linux.hwCnts.cpuInstrCnt - fuzzer->linux.hwCnts.cpuInstrCnt;
329 int64_t diff1 = hfuzz->linux.hwCnts.cpuBranchCnt - fuzzer->linux.hwCnts.cpuBranchCnt;
330 int64_t diff2 = hfuzz->linux.hwCnts.customCnt - fuzzer->linux.hwCnts.customCnt;
Jagger302c2ea2016-09-07 03:54:43 +0200331
Jagger8d0002c2016-08-17 03:44:23 +0200332 /*
333 * Coverage is the primary counter, the rest is secondary, and taken into consideration only
334 * if the coverage counter has not been changed
335 */
Jagger34789a72016-09-08 00:36:09 +0200336 if (fuzzer->linux.hwCnts.newBBCnt > 0 || softCntPc > 0 || softCntCmp > 0 || diff0 < 0
337 || diff1 < 0 || diff2 < 0) {
Jagger247c3b42016-03-21 23:24:05 +0100338 hfuzz->linux.hwCnts.cpuInstrCnt = fuzzer->linux.hwCnts.cpuInstrCnt;
339 hfuzz->linux.hwCnts.cpuBranchCnt = fuzzer->linux.hwCnts.cpuBranchCnt;
340 hfuzz->linux.hwCnts.customCnt = fuzzer->linux.hwCnts.customCnt;
341 hfuzz->linux.hwCnts.bbCnt += fuzzer->linux.hwCnts.newBBCnt;
Jagger34789a72016-09-08 00:36:09 +0200342 hfuzz->linux.hwCnts.softCntPc += softCntPc;
343 hfuzz->linux.hwCnts.softCntCmp += softCntCmp;
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200344
Jagger395df022016-08-21 01:13:25 +0200345 LOG_I
346 ("New file size: %zu, Feedback: New (instr,branch,soft,perf,custom): %" PRIu64 "/%"
Jagger91c687c2016-09-07 03:51:21 +0200347 PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 ", Total: %" PRIu64 "/%" PRIu64
348 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64 "/%" PRIu64, fuzzer->dynamicFileSz,
Jagger34789a72016-09-08 00:36:09 +0200349 fuzzer->linux.hwCnts.cpuInstrCnt, fuzzer->linux.hwCnts.cpuBranchCnt, softCntPc,
350 softCntCmp, fuzzer->linux.hwCnts.newBBCnt, fuzzer->linux.hwCnts.customCnt,
Jagger91c687c2016-09-07 03:51:21 +0200351 hfuzz->linux.hwCnts.cpuInstrCnt, hfuzz->linux.hwCnts.cpuBranchCnt,
Jagger34789a72016-09-08 00:36:09 +0200352 hfuzz->linux.hwCnts.softCntPc, hfuzz->linux.hwCnts.softCntCmp,
353 hfuzz->linux.hwCnts.bbCnt, hfuzz->linux.hwCnts.customCnt);
Jagger395df022016-08-21 01:13:25 +0200354
Robert Swieckid258ff82016-08-29 17:54:20 +0200355 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200356 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200357}
358
359static void fuzz_sanCovFeedback(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
360{
361 LOG_D
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100362 ("File size (Best/New): %zu, SanCov feedback (bb,dso): Best: [%" PRIu64
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200363 ",%" PRIu64 "] / New: [%" PRIu64 ",%" PRIu64 "], newBBs:%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100364 fuzzer->dynamicFileSz, hfuzz->sanCovCnts.hitBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200365 hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt, fuzzer->sanCovCnts.iDsoCnt,
366 fuzzer->sanCovCnts.newBBCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200367
Robert Swiecki76ecd5e2016-03-16 14:57:03 +0100368 MX_SCOPED_LOCK(&hfuzz->dynfileq_mutex);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200369
Jaggerd5738372016-08-17 20:12:15 +0200370 int64_t diff0 = hfuzz->linux.hwCnts.cpuInstrCnt - fuzzer->linux.hwCnts.cpuInstrCnt;
371 int64_t diff1 = hfuzz->linux.hwCnts.cpuBranchCnt - fuzzer->linux.hwCnts.cpuBranchCnt;
372 int64_t diff2 = hfuzz->linux.hwCnts.customCnt - fuzzer->linux.hwCnts.customCnt;
373
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200374 /*
375 * Keep mutated seed if:
Robert Swiecki142f9412016-03-14 19:22:01 +0100376 * a) Newly discovered (not met before) BBs
377 * b) More instrumented DSOs loaded
Robert Swiecki23ec02a2016-01-19 18:47:45 +0100378 *
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200379 * TODO: (a) method can significantly assist to further improvements in interesting areas
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200380 * discovery if combined with seeds pool/queue support. If a runtime queue is maintained
381 * more interesting seeds can be saved between runs instead of instantly discarded
382 * based on current absolute elitism (only one mutated seed is promoted).
383 */
Jaggerd5738372016-08-17 20:12:15 +0200384
385 bool newCov = (fuzzer->sanCovCnts.newBBCnt > 0
386 || hfuzz->sanCovCnts.iDsoCnt < fuzzer->sanCovCnts.iDsoCnt);
387
388 if (newCov || (diff0 < 0 || diff1 < 0 || diff2 < 0)) {
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100389 LOG_I("SanCov Update: file size (Cur): %zu, newBBs:%" PRIu64
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200390 ", counters (Cur,New): %" PRIu64 "/%" PRIu64 ",%" PRIu64 "/%" PRIu64,
Robert Swiecki3bfc33c2016-03-14 18:12:41 +0100391 fuzzer->dynamicFileSz, fuzzer->sanCovCnts.newBBCnt,
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200392 hfuzz->sanCovCnts.hitBBCnt, hfuzz->sanCovCnts.iDsoCnt, fuzzer->sanCovCnts.hitBBCnt,
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200393 fuzzer->sanCovCnts.iDsoCnt);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200394
Robert Swiecki142f9412016-03-14 19:22:01 +0100395 hfuzz->sanCovCnts.hitBBCnt += fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200396 hfuzz->sanCovCnts.dsoCnt = fuzzer->sanCovCnts.dsoCnt;
397 hfuzz->sanCovCnts.iDsoCnt = fuzzer->sanCovCnts.iDsoCnt;
398 hfuzz->sanCovCnts.crashesCnt += fuzzer->sanCovCnts.crashesCnt;
Robert Swiecki142f9412016-03-14 19:22:01 +0100399 hfuzz->sanCovCnts.newBBCnt = fuzzer->sanCovCnts.newBBCnt;
Anestis Bechtsoudisb78cf602016-01-07 13:10:50 +0200400
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200401 if (hfuzz->sanCovCnts.totalBBCnt < fuzzer->sanCovCnts.totalBBCnt) {
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200402 /* Keep only the max value (for dlopen cases) to measure total target coverage */
Anestis Bechtsoudis56e360f2016-01-11 14:29:17 +0200403 hfuzz->sanCovCnts.totalBBCnt = fuzzer->sanCovCnts.totalBBCnt;
Anestis Bechtsoudisa16f70f2016-01-03 13:03:21 +0200404 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200405
Jaggerd5738372016-08-17 20:12:15 +0200406 hfuzz->linux.hwCnts.cpuInstrCnt = fuzzer->linux.hwCnts.cpuInstrCnt;
407 hfuzz->linux.hwCnts.cpuBranchCnt = fuzzer->linux.hwCnts.cpuBranchCnt;
408 hfuzz->linux.hwCnts.customCnt = fuzzer->linux.hwCnts.customCnt;
409
Robert Swieckid258ff82016-08-29 17:54:20 +0200410 fuzz_addFileToFileQLocked(hfuzz, fuzzer->dynamicFile, fuzzer->dynamicFileSz);
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200411 }
Anestis Bechtsoudisbe0ac7b2015-12-26 15:38:47 +0200412}
413
Robert Swieckidecf14b2016-03-31 15:09:28 +0200414static void fuzz_fuzzLoop(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
Jagger190f0dc2015-09-05 16:41:22 +0200415{
Robert Swieckidecf14b2016-03-31 15:09:28 +0200416 fuzzer->pid = 0;
417 fuzzer->timeStartedMillis = util_timeNowMillis();
418 fuzzer->crashFileName[0] = '\0';
419 fuzzer->pc = 0ULL;
420 fuzzer->backtrace = 0ULL;
421 fuzzer->access = 0ULL;
422 fuzzer->exception = 0;
423 fuzzer->report[0] = '\0';
424 fuzzer->mainWorker = true;
425 fuzzer->origFileName = "DYNAMIC";
426 fuzzer->flipRate = hfuzz->origFlipRate;
427 fuzzer->dynamicFileSz = 0;
Robert Swieckia96d78d2016-03-14 16:50:50 +0100428
Robert Swieckidecf14b2016-03-31 15:09:28 +0200429 fuzzer->sanCovCnts.hitBBCnt = 0ULL;
430 fuzzer->sanCovCnts.totalBBCnt = 0ULL;
431 fuzzer->sanCovCnts.dsoCnt = 0ULL;
432 fuzzer->sanCovCnts.newBBCnt = 0ULL;
433 fuzzer->sanCovCnts.crashesCnt = 0ULL;
Robert Swieckia96d78d2016-03-14 16:50:50 +0100434
Robert Swieckidecf14b2016-03-31 15:09:28 +0200435 fuzzer->linux.hwCnts.cpuInstrCnt = 0ULL;
436 fuzzer->linux.hwCnts.cpuBranchCnt = 0ULL;
437 fuzzer->linux.hwCnts.customCnt = 0ULL;
438 fuzzer->linux.hwCnts.bbCnt = 0ULL;
439 fuzzer->linux.hwCnts.newBBCnt = 0ULL;
440 fuzzer->linux.perfMmapBuf = NULL;
441 fuzzer->linux.perfMmapAux = NULL;
Jagger190f0dc2015-09-05 16:41:22 +0200442
Anestis Bechtsoudis2013f252015-11-07 22:03:31 +0200443 size_t rnd_index = util_rndGet(0, hfuzz->fileCnt - 1);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200444
445 /* If dry run mode, pick the next file and not a random one */
Robert Swieckidecf14b2016-03-31 15:09:28 +0200446 if (fuzzer->flipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100447 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200448 }
Robert Swiecki129afe82016-03-15 20:03:20 +0100449
Robert Swiecki6d01e822016-03-15 20:21:46 +0100450 if (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
Jaggerd34417d2016-03-16 01:26:54 +0100451 rnd_index = ATOMIC_POST_INC(hfuzz->lastFileIndex);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100452 if (rnd_index >= hfuzz->fileCnt) {
Jagger33fd9522016-03-15 22:13:57 +0100453 /*
454 * The waiting logic (for the DYNAMIC_PRE phase to finish) should be based on cond-waits
455 * or mutexes, but it'd complicate code too much
456 */
Robert Swiecki6d01e822016-03-15 20:21:46 +0100457 while (fuzz_getState(hfuzz) == _HF_STATE_DYNAMIC_PRE) {
458 sleep(1);
Robert Swiecki129afe82016-03-15 20:03:20 +0100459 }
Robert Swieckia96d78d2016-03-14 16:50:50 +0100460 }
461 }
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200462
Jagger33fd9522016-03-15 22:13:57 +0100463 fuzzState_t state = fuzz_getState(hfuzz);
Robert Swieckidecf14b2016-03-31 15:09:28 +0200464 if (state != _HF_STATE_DYNAMIC_MAIN) {
465 fuzzer->origFileName = files_basename(hfuzz->files[rnd_index]);
Robert Swieckia08ab1c2016-03-14 18:29:21 +0100466 }
Robert Swiecki6d01e822016-03-15 20:21:46 +0100467
Robert Swieckidecf14b2016-03-31 15:09:28 +0200468 fuzz_getFileName(hfuzz, fuzzer->fileName);
Jagger190f0dc2015-09-05 16:41:22 +0200469
Jagger30384ec2016-04-02 02:30:32 +0200470 if (hfuzz->externalCommand) {
471 if (!fuzz_prepareFileExternally(hfuzz, fuzzer)) {
472 LOG_F("fuzz_prepareFileExternally() failed");
473 }
474 } else if (state == _HF_STATE_DYNAMIC_MAIN) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200475 if (!fuzz_prepareFileDynamically(hfuzz, fuzzer)) {
Jagger1d8e0c62016-04-02 02:22:40 +0200476 LOG_F("fuzz_prepareFileDynamically() failed");
Robert Swieckia96d78d2016-03-14 16:50:50 +0100477 }
Robert Swiecki6d01e822016-03-15 20:21:46 +0100478 } else if (state == _HF_STATE_DYNAMIC_PRE) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200479 fuzzer->flipRate = 0.0f;
480 if (!fuzz_prepareFile(hfuzz, fuzzer, rnd_index)) {
Jagger1d8e0c62016-04-02 02:22:40 +0200481 LOG_F("fuzz_prepareFile() failed");
Jagger190f0dc2015-09-05 16:41:22 +0200482 }
Jagger190f0dc2015-09-05 16:41:22 +0200483 } else {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200484 if (!fuzz_prepareFile(hfuzz, fuzzer, rnd_index)) {
Jagger1d8e0c62016-04-02 02:22:40 +0200485 LOG_F("fuzz_prepareFile() failed");
Jagger190f0dc2015-09-05 16:41:22 +0200486 }
487 }
488
Jaggerd1fc9ed2016-09-02 01:06:51 +0200489 if (subproc_New(hfuzz, fuzzer) == false) {
Jagger93253f72016-09-01 22:40:12 +0200490 PLOG_F("subproc_New()");
Jagger190f0dc2015-09-05 16:41:22 +0200491 }
Jaggerd1fc9ed2016-09-02 01:06:51 +0200492 subproc_Run(hfuzz, fuzzer);
Jagger190f0dc2015-09-05 16:41:22 +0200493
Jaggera34b3022016-04-02 02:20:40 +0200494 if (hfuzz->persistent == false) {
495 unlink(fuzzer->fileName);
496 }
Jagger190f0dc2015-09-05 16:41:22 +0200497
498 if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200499 fuzz_perfFeedback(hfuzz, fuzzer);
Jaggerabb6ae02016-03-18 01:55:51 +0100500 }
501 if (hfuzz->useSanCov) {
Robert Swieckidecf14b2016-03-31 15:09:28 +0200502 fuzz_sanCovFeedback(hfuzz, fuzzer);
Robert Swiecki0f937af2016-03-30 18:19:16 +0200503 }
Jagger190f0dc2015-09-05 16:41:22 +0200504
Robert Swieckidecf14b2016-03-31 15:09:28 +0200505 if (hfuzz->useVerifier && (fuzzer->crashFileName[0] != 0) && fuzzer->backtrace) {
506 if (!fuzz_runVerifier(hfuzz, fuzzer)) {
507 LOG_I("Failed to verify %s", fuzzer->crashFileName);
Anestis Bechtsoudis3085f222015-09-27 18:35:26 +0300508 }
Anestis Bechtsoudis5c86ebc2015-09-27 18:06:43 +0300509 }
510
Haris Andrianakisc9a71332016-05-09 21:56:30 -0700511 {
512 MX_SCOPED_LOCK(&hfuzz->report_mutex);
513 report_Report(hfuzz, fuzzer->report);
514 }
Robert Swiecki05354ca2016-03-15 19:10:23 +0100515
Jaggerd34417d2016-03-16 01:26:54 +0100516 if (state == _HF_STATE_DYNAMIC_PRE && ATOMIC_PRE_INC(hfuzz->doneFileIndex) >= hfuzz->fileCnt) {
Robert Swiecki6d01e822016-03-15 20:21:46 +0100517 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_MAIN);
Robert Swiecki05354ca2016-03-15 19:10:23 +0100518 }
Jagger190f0dc2015-09-05 16:41:22 +0200519}
520
Jaggerfa3544a2016-08-30 02:55:55 +0200521static uint32_t fuzz_threadNo = 0;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000522static void *fuzz_threadNew(void *arg)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000523{
Jaggerfa3544a2016-08-30 02:55:55 +0200524 unsigned int fuzzNo = ATOMIC_POST_INC(fuzz_threadNo);
525
526 LOG_I("Launched new fuzzing thread, no. #%" PRId32, fuzzNo);
Robert Swiecki0e673882016-03-31 18:50:29 +0200527
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000528 honggfuzz_t *hfuzz = (honggfuzz_t *) arg;
Anestis Bechtsoudis02b99be2015-12-27 11:53:01 +0200529
Robert Swieckidecf14b2016-03-31 15:09:28 +0200530 fuzzer_t fuzzer = {
531 .pid = 0,
532 .persistentPid = 0,
533 .dynamicFile = util_Malloc(hfuzz->maxFileSz),
Jaggerfa3544a2016-08-30 02:55:55 +0200534 .fuzzNo = fuzzNo,
Jagger93253f72016-09-01 22:40:12 +0200535 .persistentSock = -1,
Robert Swiecki12800cd2016-03-31 15:38:10 +0200536
Robert Swieckib692f282016-08-25 16:21:08 +0200537 .linux.attachedPid = 0,
Robert Swieckidecf14b2016-03-31 15:09:28 +0200538 };
Jagger4fe18692016-04-22 23:15:07 +0200539 defer {
540 free(fuzzer.dynamicFile);
541 };
Robert Swieckidecf14b2016-03-31 15:09:28 +0200542
543 if (arch_archThreadInit(hfuzz, &fuzzer) == false) {
Robert Swiecki0f937af2016-03-30 18:19:16 +0200544 LOG_F("Could not initialize the thread");
545 }
546
Robert Swieckia96d78d2016-03-14 16:50:50 +0100547 for (;;) {
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200548 /* Check if dry run mode with verifier enabled */
Robert Swieckia96d78d2016-03-14 16:50:50 +0100549 if (hfuzz->origFlipRate == 0.0L && hfuzz->useVerifier) {
Jaggerd34417d2016-03-16 01:26:54 +0100550 if (ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->fileCnt) {
551 ATOMIC_POST_INC(hfuzz->threadsFinished);
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200552 // All files checked, weak-up the main process
553 pthread_kill(fuzz_mainThread, SIGALRM);
554 return NULL;
555 }
556 }
557 /* Check for max iterations limit if set */
Jaggerd34417d2016-03-16 01:26:54 +0100558 else if ((ATOMIC_POST_INC(hfuzz->mutationsCnt) >= hfuzz->mutationsMax)
Anestis Bechtsoudis46ea10e2015-11-07 18:16:25 +0200559 && hfuzz->mutationsMax) {
Jaggerd34417d2016-03-16 01:26:54 +0100560 ATOMIC_POST_INC(hfuzz->threadsFinished);
Robert Swiecki81c6a0d2015-09-08 15:43:20 +0200561 // Wake-up the main process
Jagger6113c432015-09-24 05:00:28 +0200562 pthread_kill(fuzz_mainThread, SIGALRM);
Jaggerea39a8f2015-09-05 00:57:22 +0200563 return NULL;
564 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000565
Robert Swieckidecf14b2016-03-31 15:09:28 +0200566 fuzz_fuzzLoop(hfuzz, &fuzzer);
robert.swiecki@gmail.comd4dd4df2015-02-18 00:50:12 +0000567 }
robert.swiecki@gmail.com882900b2015-02-11 13:56:22 +0000568}
569
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000570static void fuzz_runThread(honggfuzz_t * hfuzz, void *(*thread) (void *))
571{
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000572 pthread_attr_t attr;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000573
robert.swiecki@gmail.com6f5c2392015-02-16 18:13:09 +0000574 pthread_attr_init(&attr);
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000575 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
robert.swiecki@gmail.com441089a2015-02-23 13:14:07 +0000576 pthread_attr_setstacksize(&attr, _HF_PTHREAD_STACKSIZE);
robert.swiecki@gmail.com011981f2015-02-17 19:06:44 +0000577 pthread_attr_setguardsize(&attr, (size_t) sysconf(_SC_PAGESIZE));
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000578
robert.swiecki@gmail.com01b6dd42015-02-16 18:11:28 +0000579 pthread_t t;
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000580 if (pthread_create(&t, &attr, thread, (void *)hfuzz) < 0) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200581 PLOG_F("Couldn't create a new thread");
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000582 }
583
584 return;
585}
586
Jagger08816fd2016-03-11 01:32:38 +0100587void fuzz_threads(honggfuzz_t * hfuzz)
robert.swiecki3bb518c2010-10-14 00:48:24 +0000588{
Jagger6113c432015-09-24 05:00:28 +0200589 fuzz_mainThread = pthread_self();
590
robert.swiecki@gmail.com956276a2015-04-16 16:51:52 +0000591 if (!arch_archInit(hfuzz)) {
Robert Swieckic8c32db2015-10-09 18:06:22 +0200592 LOG_F("Couldn't prepare arch for fuzzing");
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000593 }
Jagger00265602016-03-10 02:36:27 +0100594 if (!sancov_Init(hfuzz)) {
595 LOG_F("Couldn't prepare sancov options");
596 }
robert.swiecki@gmail.comef829fa2011-06-22 13:51:57 +0000597
Robert Swieckia96d78d2016-03-14 16:50:50 +0100598 if (hfuzz->useSanCov || hfuzz->dynFileMethod != _HF_DYNFILE_NONE) {
Jaggerebe19292016-03-17 00:11:44 +0100599 fuzz_setState(hfuzz, _HF_STATE_DYNAMIC_PRE);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100600 } else {
Jaggerebe19292016-03-17 00:11:44 +0100601 fuzz_setState(hfuzz, _HF_STATE_STATIC);
Robert Swieckia96d78d2016-03-14 16:50:50 +0100602 }
603
Jaggerea39a8f2015-09-05 00:57:22 +0200604 for (size_t i = 0; i < hfuzz->threadsMax; i++) {
robert.swiecki@gmail.comc8443142015-02-13 13:46:40 +0000605 fuzz_runThread(hfuzz, fuzz_threadNew);
robert.swiecki3bb518c2010-10-14 00:48:24 +0000606 }
robert.swiecki3bb518c2010-10-14 00:48:24 +0000607}