blob: ff5d0a7e9d1959bd695d3ad89238f808696da8f7 [file] [log] [blame]
Robert Swiecki0e673882016-03-31 18:50:29 +02001/*
2 *
3 * honggfuzz - routines dealing with subprocesses
4 * -----------------------------------------
5 *
Robert Swiecki46288f72018-02-27 17:28:47 +01006 * Author: Robert Swiecki <swiecki@google.com>
7 * Felix Gröbert <groebert@google.com>
Robert Swiecki0e673882016-03-31 18:50:29 +02008 *
Robert Swiecki46288f72018-02-27 17:28:47 +01009 * Copyright 2010-2018 by Google Inc. All Rights Reserved.
Robert Swiecki0e673882016-03-31 18:50:29 +020010 *
11 * Licensed under the Apache License, Version 2.0 (the "License"); you may
12 * not use this file except in compliance with the License. You may obtain
13 * a copy of the License at
14 *
15 * http://www.apache.org/licenses/LICENSE-2.0
16 *
17 * Unless required by applicable law or agreed to in writing, software
18 * distributed under the License is distributed on an "AS IS" BASIS,
19 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
20 * implied. See the License for the specific language governing
21 * permissions and limitations under the License.
22 *
23 */
24
Robert Swiecki0e673882016-03-31 18:50:29 +020025#include "subproc.h"
26
Robert Swiecki1ddf6742017-05-08 21:17:32 +020027#include <errno.h>
Jagger93253f72016-09-01 22:40:12 +020028#include <fcntl.h>
Jaggerc7743512016-08-31 22:00:19 +020029#include <inttypes.h>
Robert Swiecki0e673882016-03-31 18:50:29 +020030#include <signal.h>
31#include <stdio.h>
Jaggerc7743512016-08-31 22:00:19 +020032#include <stdlib.h>
Robert Swiecki0e673882016-03-31 18:50:29 +020033#include <string.h>
Jaggerc7743512016-08-31 22:00:19 +020034#include <sys/resource.h>
Jagger93253f72016-09-01 22:40:12 +020035#include <sys/socket.h>
Jaggerc7743512016-08-31 22:00:19 +020036#include <sys/time.h>
Robert Swiecki0e673882016-03-31 18:50:29 +020037#include <sys/types.h>
38#include <sys/wait.h>
Jaggerc7743512016-08-31 22:00:19 +020039#include <unistd.h>
Robert Swiecki0e673882016-03-31 18:50:29 +020040
Robert Swieckid0fa62c2017-09-28 18:11:05 +020041#include "arch.h"
Robert Swiecki35978ac2017-11-16 18:00:53 +010042#include "fuzz.h"
Robert Swiecki246af3e2018-01-05 14:56:32 +010043#include "libhfcommon/common.h"
44#include "libhfcommon/files.h"
45#include "libhfcommon/log.h"
46#include "libhfcommon/util.h"
Jaggerc7743512016-08-31 22:00:19 +020047
Robert Swiecki4e595fb2017-10-11 17:26:51 +020048extern char** environ;
Robert Swiecki0e673882016-03-31 18:50:29 +020049
Robert Swieckid50ed422017-11-13 23:32:26 +010050const char* subproc_StatusToStr(int status, char* str, size_t len) {
Robert Swiecki0e673882016-03-31 18:50:29 +020051 if (WIFEXITED(status)) {
52 snprintf(str, len, "EXITED, exit code: %d", WEXITSTATUS(status));
53 return str;
54 }
55
56 if (WIFSIGNALED(status)) {
Robert Swiecki0b566112017-10-17 17:39:07 +020057 snprintf(
58 str, len, "SIGNALED, signal: %d (%s)", WTERMSIG(status), strsignal(WTERMSIG(status)));
Robert Swiecki0e673882016-03-31 18:50:29 +020059 return str;
60 }
Robert Swiecki0e673882016-03-31 18:50:29 +020061 if (WIFCONTINUED(status)) {
62 snprintf(str, len, "CONTINUED");
63 return str;
64 }
65
66 if (!WIFSTOPPED(status)) {
67 snprintf(str, len, "UNKNOWN STATUS: %d", status);
68 return str;
69 }
70
71 /* Must be in a stopped state */
72 if (WSTOPSIG(status) == (SIGTRAP | 0x80)) {
73 snprintf(str, len, "STOPPED (linux syscall): %d (%s)", WSTOPSIG(status),
Robert Swiecki4e595fb2017-10-11 17:26:51 +020074 strsignal(WSTOPSIG(status)));
Robert Swiecki0e673882016-03-31 18:50:29 +020075 return str;
76 }
Robert Swiecki2531d752016-04-19 14:00:17 +020077#if defined(PTRACE_EVENT_STOP)
Robert Swiecki0e673882016-03-31 18:50:29 +020078#define __LINUX_WPTRACEEVENT(x) ((x & 0xff0000) >> 16)
79 if (WSTOPSIG(status) == SIGTRAP && __LINUX_WPTRACEEVENT(status) != 0) {
80 switch (__LINUX_WPTRACEEVENT(status)) {
Robert Swieckid50ed422017-11-13 23:32:26 +010081 case PTRACE_EVENT_FORK:
82 snprintf(str, len, "EVENT (Linux) - fork - with signal: %d (%s)", WSTOPSIG(status),
83 strsignal(WSTOPSIG(status)));
84 return str;
85 case PTRACE_EVENT_VFORK:
86 snprintf(str, len, "EVENT (Linux) - vfork - with signal: %d (%s)", WSTOPSIG(status),
87 strsignal(WSTOPSIG(status)));
88 return str;
89 case PTRACE_EVENT_CLONE:
90 snprintf(str, len, "EVENT (Linux) - clone - with signal: %d (%s)", WSTOPSIG(status),
91 strsignal(WSTOPSIG(status)));
92 return str;
93 case PTRACE_EVENT_EXEC:
94 snprintf(str, len, "EVENT (Linux) - exec - with signal: %d (%s)", WSTOPSIG(status),
95 strsignal(WSTOPSIG(status)));
96 return str;
97 case PTRACE_EVENT_VFORK_DONE:
98 snprintf(str, len, "EVENT (Linux) - vfork_done - with signal: %d (%s)",
99 WSTOPSIG(status), strsignal(WSTOPSIG(status)));
100 return str;
101 case PTRACE_EVENT_EXIT:
102 snprintf(str, len, "EVENT (Linux) - exit - with signal: %d (%s)", WSTOPSIG(status),
103 strsignal(WSTOPSIG(status)));
104 return str;
105 case PTRACE_EVENT_SECCOMP:
106 snprintf(str, len, "EVENT (Linux) - seccomp - with signal: %d (%s)",
107 WSTOPSIG(status), strsignal(WSTOPSIG(status)));
108 return str;
109 case PTRACE_EVENT_STOP:
110 snprintf(str, len, "EVENT (Linux) - stop - with signal: %d (%s)", WSTOPSIG(status),
111 strsignal(WSTOPSIG(status)));
112 return str;
113 default:
114 snprintf(str, len, "EVENT (Linux) UNKNOWN (%d): with signal: %d (%s)",
115 __LINUX_WPTRACEEVENT(status), WSTOPSIG(status), strsignal(WSTOPSIG(status)));
116 return str;
Robert Swiecki0e673882016-03-31 18:50:29 +0200117 }
118 }
Robert Swiecki4e595fb2017-10-11 17:26:51 +0200119#endif /* defined(PTRACE_EVENT_STOP) */
Robert Swiecki0e673882016-03-31 18:50:29 +0200120
Robert Swiecki0b566112017-10-17 17:39:07 +0200121 snprintf(
122 str, len, "STOPPED with signal: %d (%s)", WSTOPSIG(status), strsignal(WSTOPSIG(status)));
Robert Swiecki0e673882016-03-31 18:50:29 +0200123 return str;
124}
Jaggerc7743512016-08-31 22:00:19 +0200125
Robert Swiecki7c81c272018-01-11 14:41:04 +0100126static bool subproc_persistentSendFileIndicator(run_t* run) {
Robert Swiecki599dee12018-01-10 02:21:58 +0100127 uint64_t len = (uint64_t)run->dynamicFileSz;
Robert Swieckie7294ca2017-11-11 02:46:32 +0100128 if (!files_sendToSocketNB(run->persistentSock, (uint8_t*)&len, sizeof(len))) {
Robert Swiecki2036e202017-06-06 00:01:44 +0200129 PLOG_W("files_sendToSocketNB(len=%zu)", sizeof(len));
Robert Swiecki940a0802016-11-02 12:42:09 +0100130 return false;
131 }
Robert Swiecki940a0802016-11-02 12:42:09 +0100132 return true;
133}
134
Robert Swiecki98e23372019-01-30 11:50:18 +0100135static bool subproc_persistentGetReady(run_t* run) {
136 uint8_t rcv;
137 if (recv(run->persistentSock, &rcv, sizeof(rcv), MSG_DONTWAIT) != sizeof(rcv)) {
138 return false;
139 }
140 if (rcv != HFReadyTag) {
141 LOG_E("Received invalid message from the persistent process: '%c' (0x%" PRIx8
142 ") , expected '%c' (0x%" PRIx8 ")",
143 rcv, rcv, HFReadyTag, HFReadyTag);
144 return false;
145 }
146 return true;
147}
148
149bool subproc_persistentModeStateMachine(run_t* run) {
150 if (!run->global->exe.persistent) {
151 return false;
152 }
153
154 for (;;) {
155 switch (run->runState) {
156 case _HF_RS_WAITING_FOR_INITIAL_READY: {
157 if (!subproc_persistentGetReady(run)) {
158 return false;
159 }
160 run->runState = _HF_RS_SEND_DATA;
161 }; break;
162 case _HF_RS_SEND_DATA: {
163 if (!subproc_persistentSendFileIndicator(run)) {
164 LOG_E("Could not send the file size indicator to the persistent process. "
165 "Killing the process pid=%d",
166 (int)run->pid);
167 kill(run->pid, SIGKILL);
168 return false;
169 }
170 run->runState = _HF_RS_WAITING_FOR_READY;
171 }; break;
172 case _HF_RS_WAITING_FOR_READY: {
173 if (!subproc_persistentGetReady(run)) {
174 return false;
175 }
176 run->runState = _HF_RS_SEND_DATA;
177 /* The current persistent round is done */
178 return true;
179 }; break;
Robert Swiecki636ffba2019-02-18 15:45:16 +0100180 default: {
181 LOG_F("Unknown runState: %d", run->runState);
182 }; break;
Robert Swiecki98e23372019-01-30 11:50:18 +0100183 }
184 }
185}
186
Robert Swiecki599dee12018-01-10 02:21:58 +0100187static bool subproc_PrepareExecv(run_t* run) {
Jaggerc7743512016-08-31 22:00:19 +0200188 /*
Jaggerc7743512016-08-31 22:00:19 +0200189 * The address space limit. If big enough - roughly the size of RAM used
190 */
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100191#ifdef RLIMIT_AS
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100192 if (run->global->exe.asLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100193 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100194 .rlim_cur = run->global->exe.asLimit * 1024ULL * 1024ULL,
195 .rlim_max = run->global->exe.asLimit * 1024ULL * 1024ULL,
Jaggerc7743512016-08-31 22:00:19 +0200196 };
197 if (setrlimit(RLIMIT_AS, &rl) == -1) {
Robert Swiecki8954afd2017-11-14 18:14:22 +0100198 PLOG_W("Couldn't enforce the RLIMIT_AS resource limit, ignoring");
199 }
200 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100201#endif /* ifdef RLIMIT_AS */
202#ifdef RLIMIT_RSS
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100203 if (run->global->exe.rssLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100204 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100205 .rlim_cur = run->global->exe.rssLimit * 1024ULL * 1024ULL,
206 .rlim_max = run->global->exe.rssLimit * 1024ULL * 1024ULL,
Robert Swiecki8954afd2017-11-14 18:14:22 +0100207 };
208 if (setrlimit(RLIMIT_RSS, &rl) == -1) {
209 PLOG_W("Couldn't enforce the RLIMIT_RSS resource limit, ignoring");
210 }
211 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100212#endif /* ifdef RLIMIT_RSS */
213#ifdef RLIMIT_DATA
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100214 if (run->global->exe.dataLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100215 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100216 .rlim_cur = run->global->exe.dataLimit * 1024ULL * 1024ULL,
217 .rlim_max = run->global->exe.dataLimit * 1024ULL * 1024ULL,
Robert Swiecki8954afd2017-11-14 18:14:22 +0100218 };
Robert Swiecki1f9f2132017-11-27 16:49:37 +0100219 if (setrlimit(RLIMIT_DATA, &rl) == -1) {
Robert Swiecki8954afd2017-11-14 18:14:22 +0100220 PLOG_W("Couldn't enforce the RLIMIT_DATA resource limit, ignoring");
Jaggerc7743512016-08-31 22:00:19 +0200221 }
222 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100223#endif /* ifdef RLIMIT_DATA */
Robert Swieckic58ca512018-11-06 17:50:37 +0100224#ifdef RLIMIT_CORE
Robert Swiecki5a058282018-11-06 17:52:03 +0100225 const struct rlimit rl = {
226 .rlim_cur = run->global->exe.coreLimit * 1024ULL * 1024ULL,
227 .rlim_max = run->global->exe.coreLimit * 1024ULL * 1024ULL,
228 };
229 if (setrlimit(RLIMIT_CORE, &rl) == -1) {
230 PLOG_W("Couldn't enforce the RLIMIT_CORE resource limit, ignoring");
Robert Swieckic58ca512018-11-06 17:50:37 +0100231 }
232#endif /* ifdef RLIMIT_CORE */
Jaggerc7743512016-08-31 22:00:19 +0200233
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100234 if (run->global->exe.clearEnv) {
Jaggerc7743512016-08-31 22:00:19 +0200235 environ = NULL;
236 }
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100237 for (size_t i = 0; i < ARRAYSIZE(run->global->exe.envs) && run->global->exe.envs[i]; i++) {
238 putenv(run->global->exe.envs[i]);
Jaggerc7743512016-08-31 22:00:19 +0200239 }
240 char fuzzNo[128];
Robert Swieckie7294ca2017-11-11 02:46:32 +0100241 snprintf(fuzzNo, sizeof(fuzzNo), "%" PRId32, run->fuzzNo);
Jaggerc7743512016-08-31 22:00:19 +0200242 setenv(_HF_THREAD_NO_ENV, fuzzNo, 1);
Robert Swiecki642c7fb2018-11-12 14:46:16 +0100243 if (run->global->exe.netDriver) {
244 setenv(_HF_THREAD_NETDRIVER_ENV, "1", 1);
245 }
Jaggerc7743512016-08-31 22:00:19 +0200246
Robert Swieckif6e0f922019-01-30 19:09:41 +0100247 /* Make sure it's a new process group / session, so waitpid can wait for -(run->pid) */
Jaggerc7743512016-08-31 22:00:19 +0200248 setsid();
249
Robert Swiecki6ab8f342018-01-15 23:03:16 +0100250 util_closeStdio(/* close_stdin= */ run->global->exe.nullifyStdio,
Robert Swieckib4333062018-01-15 23:00:45 +0100251 /* close_stdout= */ run->global->exe.nullifyStdio,
252 /* close_stderr= */ run->global->exe.nullifyStdio);
253
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100254 /* The bitmap structure */
Robert Swieckia5b918a2018-03-07 23:59:53 +0100255 if (run->global->feedback.bbFd != -1 && dup2(run->global->feedback.bbFd, _HF_BITMAP_FD) == -1) {
256 PLOG_E("dup2(%d, _HF_BITMAP_FD=%d)", run->global->feedback.bbFd, _HF_BITMAP_FD);
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100257 return false;
Jaggerc7743512016-08-31 22:00:19 +0200258 }
259
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100260 /* The input file to _HF_INPUT_FD */
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100261 if (run->global->exe.persistent && dup2(run->dynamicFileFd, _HF_INPUT_FD) == -1) {
Robert Swiecki0a01ea72018-01-11 01:50:18 +0100262 PLOG_E("dup2('%d', _HF_INPUT_FD='%d')", run->dynamicFileFd, _HF_INPUT_FD);
263 return false;
264 }
Robert Swiecki599dee12018-01-10 02:21:58 +0100265
Robert Swieckifda81302019-01-26 23:32:40 +0100266 /* The log FD */
Robert Swiecki44894272019-01-30 12:53:54 +0100267 if ((run->global->exe.netDriver || run->global->exe.persistent)) {
268 if (dup2(logFd(), _HF_LOG_FD) == -1) {
269 PLOG_E("dup2(%d, _HF_LOG_FD=%d)", logFd(), _HF_LOG_FD);
270 return false;
271 }
272 char llstr[32];
273 snprintf(llstr, sizeof(llstr), "%d", logGetLevel());
274 setenv(_HF_LOG_LEVEL_ENV, llstr, 1);
Robert Swieckifda81302019-01-26 23:32:40 +0100275 }
276
Robert Swiecki491d7bb2017-02-28 03:02:53 +0100277 sigset_t sset;
278 sigemptyset(&sset);
279 if (sigprocmask(SIG_SETMASK, &sset, NULL) == -1) {
280 PLOG_W("sigprocmask(empty_set)");
281 }
282
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100283 if (!run->global->exe.persistent) {
Robert Swiecki1f1a2f92018-01-15 15:26:37 +0100284 if ((run->dynamicFileCopyFd = files_writeBufToTmpFile(
285 run->global->io.workDir, run->dynamicFile, run->dynamicFileSz, 0)) == -1) {
286 LOG_E("Couldn't save data to a temporary file");
287 return false;
288 }
289 if (run->global->exe.fuzzStdin && dup2(run->dynamicFileCopyFd, STDIN_FILENO) == -1) {
290 PLOG_E("dup2(_HF_INPUT_FD=%d, STDIN_FILENO=%d)", run->dynamicFileCopyFd, STDIN_FILENO);
291 return false;
292 }
Robert Swiecki3975afe2018-01-10 04:32:21 +0100293 }
Robert Swieckic8a95362018-01-10 02:29:49 +0100294
Jaggerc7743512016-08-31 22:00:19 +0200295 return true;
296}
Jagger93253f72016-09-01 22:40:12 +0200297
Robert Swieckid50ed422017-11-13 23:32:26 +0100298static bool subproc_New(run_t* run) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100299 if (run->pid) {
Jagger93253f72016-09-01 22:40:12 +0200300 return true;
301 }
dobinedf9f8d2018-01-21 13:57:02 +0100302
Jagger93253f72016-09-01 22:40:12 +0200303 int sv[2];
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100304 if (run->global->exe.persistent) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100305 if (run->persistentSock != -1) {
306 close(run->persistentSock);
Jagger82a20c02016-09-02 01:36:39 +0200307 }
308
Jaggere4dad652016-09-10 03:35:50 +0200309 int sock_type = SOCK_STREAM;
310#if defined(SOCK_CLOEXEC)
311 sock_type |= SOCK_CLOEXEC;
312#endif
313 if (socketpair(AF_UNIX, sock_type, 0, sv) == -1) {
Jagger93253f72016-09-01 22:40:12 +0200314 PLOG_W("socketpair(AF_UNIX, SOCK_STREAM, 0, sv)");
315 return false;
316 }
Robert Swieckie7294ca2017-11-11 02:46:32 +0100317 run->persistentSock = sv[0];
Jagger93253f72016-09-01 22:40:12 +0200318 }
319
Robert Swiecki158fe042018-01-10 02:33:56 +0100320 LOG_D("Forking new process for thread: %" PRId32, run->fuzzNo);
321
Robert Swiecki78633d12017-11-13 23:24:55 +0100322 run->pid = arch_fork(run);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100323 if (run->pid == -1) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200324 PLOG_E("Couldn't fork");
Robert Swiecki98e23372019-01-30 11:50:18 +0100325 run->pid = 0;
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200326 return false;
Jagger93253f72016-09-01 22:40:12 +0200327 }
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200328 /* The child process */
Robert Swieckie7294ca2017-11-11 02:46:32 +0100329 if (!run->pid) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200330 logMutexReset();
331 /*
332 * Reset sighandlers, and set alarm(1). It's a guarantee against dead-locks
333 * in the child, where we ensure here that the child process will either
334 * execve or get signaled by SIGALRM within 1 second.
Robert Swieckic337d4f2017-06-01 13:09:41 +0200335 *
336 * Those deadlocks typically stem from the fact, that malloc() can behave weirdly
337 * when fork()-ing a single thread of a process: e.g. with glibc < 2.24
338 * (or, Ubuntu's 2.23-0ubuntu6). For more see
339 * http://changelogs.ubuntu.com/changelogs/pool/main/g/glibc/glibc_2.23-0ubuntu7/changelog
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200340 */
341 alarm(1);
342 signal(SIGALRM, SIG_DFL);
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200343
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100344 if (run->global->exe.persistent) {
Jagger93253f72016-09-01 22:40:12 +0200345 if (dup2(sv[1], _HF_PERSISTENT_FD) == -1) {
346 PLOG_F("dup2('%d', '%d')", sv[1], _HF_PERSISTENT_FD);
347 }
348 close(sv[0]);
349 close(sv[1]);
350 }
351
Robert Swiecki599dee12018-01-10 02:21:58 +0100352 if (!subproc_PrepareExecv(run)) {
Jagger93253f72016-09-01 22:40:12 +0200353 LOG_E("subproc_PrepareExecv() failed");
354 exit(EXIT_FAILURE);
355 }
Robert Swiecki78633d12017-11-13 23:24:55 +0100356 if (!arch_launchChild(run)) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200357 LOG_E("Error launching child process");
Robert Swiecki82c707c2017-11-14 16:36:23 +0100358 kill(run->global->threads.mainPid, SIGTERM);
Robert Swieckia375f4b2017-06-01 13:20:54 +0200359 _exit(1);
Jagger93253f72016-09-01 22:40:12 +0200360 }
Robert Swiecki42cc9822017-02-12 22:20:46 +0100361 abort();
Jagger93253f72016-09-01 22:40:12 +0200362 }
Robert Swieckic337d4f2017-06-01 13:09:41 +0200363
364 /* Parent */
Robert Swiecki98e23372019-01-30 11:50:18 +0100365 LOG_D("Launched new process, pid=%d, thread: %" PRId32 " (concurrency: %zd)", (int)run->pid,
Robert Swiecki158fe042018-01-10 02:33:56 +0100366 run->fuzzNo, run->global->threads.threadsMax);
Robert Swiecki5eeb29b2018-01-21 16:07:06 +0100367
Robert Swiecki98e23372019-01-30 11:50:18 +0100368 arch_prepareParentAfterFork(run);
369
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100370 if (run->global->exe.persistent) {
Anestis Bechtsoudis8171d522016-10-27 11:22:06 +0300371 close(sv[1]);
Robert Swiecki98e23372019-01-30 11:50:18 +0100372 run->runState = _HF_RS_WAITING_FOR_INITIAL_READY;
373 LOG_I("Persistent mode: Launched new persistent pid=%d", (int)run->pid);
Anestis Bechtsoudis8171d522016-10-27 11:22:06 +0300374 }
Jagger93253f72016-09-01 22:40:12 +0200375
376 return true;
377}
Jaggerd1fc9ed2016-09-02 01:06:51 +0200378
Robert Swieckid50ed422017-11-13 23:32:26 +0100379bool subproc_Run(run_t* run) {
Robert Swieckif2da05a2018-01-12 03:01:09 +0100380 run->timeStartedMillis = util_timeNowMillis();
381
Robert Swiecki78633d12017-11-13 23:24:55 +0100382 if (!subproc_New(run)) {
Robert Swiecki940a0802016-11-02 12:42:09 +0100383 LOG_E("subproc_New()");
Jaggerc4729592016-09-02 01:52:30 +0200384 return false;
385 }
Jaggerc4729592016-09-02 01:52:30 +0200386
Robert Swiecki78633d12017-11-13 23:24:55 +0100387 arch_prepareParent(run);
Robert Swiecki78633d12017-11-13 23:24:55 +0100388 arch_reapChild(run);
Robert Swiecki940a0802016-11-02 12:42:09 +0100389
390 return true;
Jaggerd1fc9ed2016-09-02 01:06:51 +0200391}
Robert Swiecki54333cd2016-09-07 17:51:48 +0200392
Robert Swieckid50ed422017-11-13 23:32:26 +0100393uint8_t subproc_System(run_t* run, const char* const argv[]) {
Robert Swiecki78633d12017-11-13 23:24:55 +0100394 pid_t pid = arch_fork(run);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200395 if (pid == -1) {
396 PLOG_E("Couldn't fork");
Robert Swieckib0a8d582016-09-09 18:13:00 +0200397 return 255;
Robert Swiecki54333cd2016-09-07 17:51:48 +0200398 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200399 if (!pid) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200400 logMutexReset();
Robert Swiecki5dbab882017-10-20 16:00:20 +0200401
Robert Swiecki3d66b7e2018-01-17 00:21:59 +0100402 setsid();
403 util_closeStdio(
404 /* close_stdin= */ true, /* close_stdout= */ false, /* close_stderr= */ false);
405
Robert Swiecki5dbab882017-10-20 16:00:20 +0200406 sigset_t sset;
407 sigemptyset(&sset);
408 if (sigprocmask(SIG_SETMASK, &sset, NULL) == -1) {
409 PLOG_W("sigprocmask(empty_set)");
410 }
411
Robert Swiecki4e595fb2017-10-11 17:26:51 +0200412 execv(argv[0], (char* const*)&argv[0]);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200413 PLOG_F("Couldn't execute '%s'", argv[0]);
Robert Swieckib0a8d582016-09-09 18:13:00 +0200414 return 255;
Robert Swiecki54333cd2016-09-07 17:51:48 +0200415 }
416
Robert Swiecki54333cd2016-09-07 17:51:48 +0200417 int flags = 0;
418#if defined(__WNOTHREAD)
419 flags |= __WNOTHREAD;
Robert Swiecki4e595fb2017-10-11 17:26:51 +0200420#endif /* defined(__WNOTHREAD) */
Robert Swiecki0c52f7d2019-02-14 16:34:21 +0100421#if defined(__WALL)
422 flags |= __WALL;
423#endif /* defined(__WALL) */
Robert Swiecki54333cd2016-09-07 17:51:48 +0200424
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200425 for (;;) {
Robert Swiecki0c52f7d2019-02-14 16:34:21 +0100426 int status;
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200427 int ret = wait4(pid, &status, flags, NULL);
428 if (ret == -1 && errno == EINTR) {
429 continue;
430 }
431 if (ret == -1) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100432 PLOG_E("wait4() for process pid=%d", (int)pid);
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200433 return 255;
434 }
435 if (ret != pid) {
436 LOG_E("wait4() returned %d, but waited for %d", ret, (int)pid);
437 return 255;
438 }
439 if (WIFSIGNALED(status)) {
440 LOG_E("Command '%s' terminated with signal: %d", argv[0], WTERMSIG(status));
441 return (100 + WTERMSIG(status));
442 }
443 if (WIFEXITED(status)) {
444 if (WEXITSTATUS(status) == 0) {
445 return 0U;
446 }
447 LOG_E("Command '%s' returned with exit code %d", argv[0], WEXITSTATUS(status));
448 return 1U;
449 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200450
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200451 LOG_D("wait4() returned with status: %d", status);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200452 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200453}
Robert Swieckifddc0862016-10-27 12:42:46 +0200454
Robert Swieckid50ed422017-11-13 23:32:26 +0100455void subproc_checkTimeLimit(run_t* run) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100456 if (!run->global->timing.tmOut) {
Robert Swieckifddc0862016-10-27 12:42:46 +0200457 return;
458 }
459
460 int64_t curMillis = util_timeNowMillis();
Robert Swieckie7294ca2017-11-11 02:46:32 +0100461 int64_t diffMillis = curMillis - run->timeStartedMillis;
Robert Swiecki013bc9c2016-12-12 17:31:06 +0100462
Robert Swiecki371e1292017-12-18 01:10:33 +0100463 if (run->tmOutSignaled && (diffMillis > ((run->global->timing.tmOut + 1) * 1000))) {
Robert Swiecki66d3e252017-07-06 01:53:40 +0200464 /* Has this instance been already signaled due to timeout? Just, SIGKILL it */
Robert Swiecki98e23372019-01-30 11:50:18 +0100465 LOG_W("pid=%d has already been signaled due to timeout. Killing it with SIGKILL", run->pid);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100466 kill(run->pid, SIGKILL);
Robert Swiecki66d3e252017-07-06 01:53:40 +0200467 return;
468 }
469
Robert Swiecki371e1292017-12-18 01:10:33 +0100470 if ((diffMillis > (run->global->timing.tmOut * 1000)) && !run->tmOutSignaled) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100471 run->tmOutSignaled = true;
Robert Swiecki98e23372019-01-30 11:50:18 +0100472 LOG_W("pid=%d took too much time (limit %ld s). Killing it with %s", (int)run->pid,
Robert Swieckib8db4b42018-01-16 22:13:30 +0100473 (long)run->global->timing.tmOut,
474 run->global->timing.tmoutVTALRM ? "SIGVTALRM" : "SIGKILL");
Robert Swieckieba27172017-12-18 01:12:02 +0100475 if (run->global->timing.tmoutVTALRM) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100476 kill(run->pid, SIGVTALRM);
Robert Swieckie84b6452016-12-12 12:42:04 +0100477 } else {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100478 kill(run->pid, SIGKILL);
Robert Swieckie84b6452016-12-12 12:42:04 +0100479 }
Robert Swiecki2542dc02017-11-14 03:35:59 +0100480 ATOMIC_POST_INC(run->global->cnts.timeoutedCnt);
Robert Swieckifddc0862016-10-27 12:42:46 +0200481 }
482}
Robert Swiecki4f09ce02017-02-25 22:47:55 +0100483
Robert Swieckid50ed422017-11-13 23:32:26 +0100484void subproc_checkTermination(run_t* run) {
Robert Swiecki0dde76d2017-11-16 19:25:44 +0100485 if (fuzz_isTerminating()) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100486 LOG_D("Killing pid=%d", (int)run->pid);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100487 kill(run->pid, SIGKILL);
Robert Swiecki4f09ce02017-02-25 22:47:55 +0100488 }
489}
Robert Swiecki64d52432019-02-14 23:02:13 +0100490
491bool subproc_runThread(honggfuzz_t* hfuzz, pthread_t* thread, void* (*thread_func)(void*)) {
492 pthread_attr_t attr;
493
494 pthread_attr_init(&attr);
Robert Swieckifb787402019-02-17 02:43:27 +0100495 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
Robert Swiecki64d52432019-02-14 23:02:13 +0100496 pthread_attr_setstacksize(&attr, _HF_PTHREAD_STACKSIZE);
497 pthread_attr_setguardsize(&attr, (size_t)sysconf(_SC_PAGESIZE));
498
499 if (pthread_create(thread, &attr, thread_func, (void*)hfuzz) < 0) {
500 PLOG_W("Couldn't create a new thread");
501 return false;
502 }
503
504 pthread_attr_destroy(&attr);
505
506 return true;
507}