blob: a8daf9640f1dbab841588119452544aa26dfd307 [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;
180 default: { LOG_F("Unknown runState: %d", run->runState); }; break;
181 }
182 }
183}
184
Robert Swiecki599dee12018-01-10 02:21:58 +0100185static bool subproc_PrepareExecv(run_t* run) {
Jaggerc7743512016-08-31 22:00:19 +0200186 /*
Jaggerc7743512016-08-31 22:00:19 +0200187 * The address space limit. If big enough - roughly the size of RAM used
188 */
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100189#ifdef RLIMIT_AS
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100190 if (run->global->exe.asLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100191 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100192 .rlim_cur = run->global->exe.asLimit * 1024ULL * 1024ULL,
193 .rlim_max = run->global->exe.asLimit * 1024ULL * 1024ULL,
Jaggerc7743512016-08-31 22:00:19 +0200194 };
195 if (setrlimit(RLIMIT_AS, &rl) == -1) {
Robert Swiecki8954afd2017-11-14 18:14:22 +0100196 PLOG_W("Couldn't enforce the RLIMIT_AS resource limit, ignoring");
197 }
198 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100199#endif /* ifdef RLIMIT_AS */
200#ifdef RLIMIT_RSS
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100201 if (run->global->exe.rssLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100202 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100203 .rlim_cur = run->global->exe.rssLimit * 1024ULL * 1024ULL,
204 .rlim_max = run->global->exe.rssLimit * 1024ULL * 1024ULL,
Robert Swiecki8954afd2017-11-14 18:14:22 +0100205 };
206 if (setrlimit(RLIMIT_RSS, &rl) == -1) {
207 PLOG_W("Couldn't enforce the RLIMIT_RSS resource limit, ignoring");
208 }
209 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100210#endif /* ifdef RLIMIT_RSS */
211#ifdef RLIMIT_DATA
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100212 if (run->global->exe.dataLimit) {
Robert Swieckidc8047c2018-01-07 21:18:26 +0100213 const struct rlimit rl = {
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100214 .rlim_cur = run->global->exe.dataLimit * 1024ULL * 1024ULL,
215 .rlim_max = run->global->exe.dataLimit * 1024ULL * 1024ULL,
Robert Swiecki8954afd2017-11-14 18:14:22 +0100216 };
Robert Swiecki1f9f2132017-11-27 16:49:37 +0100217 if (setrlimit(RLIMIT_DATA, &rl) == -1) {
Robert Swiecki8954afd2017-11-14 18:14:22 +0100218 PLOG_W("Couldn't enforce the RLIMIT_DATA resource limit, ignoring");
Jaggerc7743512016-08-31 22:00:19 +0200219 }
220 }
Robert Swiecki0e6ca612018-01-16 21:48:30 +0100221#endif /* ifdef RLIMIT_DATA */
Robert Swieckic58ca512018-11-06 17:50:37 +0100222#ifdef RLIMIT_CORE
Robert Swiecki5a058282018-11-06 17:52:03 +0100223 const struct rlimit rl = {
224 .rlim_cur = run->global->exe.coreLimit * 1024ULL * 1024ULL,
225 .rlim_max = run->global->exe.coreLimit * 1024ULL * 1024ULL,
226 };
227 if (setrlimit(RLIMIT_CORE, &rl) == -1) {
228 PLOG_W("Couldn't enforce the RLIMIT_CORE resource limit, ignoring");
Robert Swieckic58ca512018-11-06 17:50:37 +0100229 }
230#endif /* ifdef RLIMIT_CORE */
Jaggerc7743512016-08-31 22:00:19 +0200231
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100232 if (run->global->exe.clearEnv) {
Jaggerc7743512016-08-31 22:00:19 +0200233 environ = NULL;
234 }
Robert Swiecki97d0cee2017-12-18 00:17:50 +0100235 for (size_t i = 0; i < ARRAYSIZE(run->global->exe.envs) && run->global->exe.envs[i]; i++) {
236 putenv(run->global->exe.envs[i]);
Jaggerc7743512016-08-31 22:00:19 +0200237 }
238 char fuzzNo[128];
Robert Swieckie7294ca2017-11-11 02:46:32 +0100239 snprintf(fuzzNo, sizeof(fuzzNo), "%" PRId32, run->fuzzNo);
Jaggerc7743512016-08-31 22:00:19 +0200240 setenv(_HF_THREAD_NO_ENV, fuzzNo, 1);
Robert Swiecki642c7fb2018-11-12 14:46:16 +0100241 if (run->global->exe.netDriver) {
242 setenv(_HF_THREAD_NETDRIVER_ENV, "1", 1);
243 }
Jaggerc7743512016-08-31 22:00:19 +0200244
Robert Swieckif6e0f922019-01-30 19:09:41 +0100245 /* Make sure it's a new process group / session, so waitpid can wait for -(run->pid) */
Jaggerc7743512016-08-31 22:00:19 +0200246 setsid();
247
Robert Swiecki6ab8f342018-01-15 23:03:16 +0100248 util_closeStdio(/* close_stdin= */ run->global->exe.nullifyStdio,
Robert Swieckib4333062018-01-15 23:00:45 +0100249 /* close_stdout= */ run->global->exe.nullifyStdio,
250 /* close_stderr= */ run->global->exe.nullifyStdio);
251
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100252 /* The bitmap structure */
Robert Swieckia5b918a2018-03-07 23:59:53 +0100253 if (run->global->feedback.bbFd != -1 && dup2(run->global->feedback.bbFd, _HF_BITMAP_FD) == -1) {
254 PLOG_E("dup2(%d, _HF_BITMAP_FD=%d)", run->global->feedback.bbFd, _HF_BITMAP_FD);
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100255 return false;
Jaggerc7743512016-08-31 22:00:19 +0200256 }
257
Robert Swiecki6526a7d2018-01-15 17:38:58 +0100258 /* The input file to _HF_INPUT_FD */
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100259 if (run->global->exe.persistent && dup2(run->dynamicFileFd, _HF_INPUT_FD) == -1) {
Robert Swiecki0a01ea72018-01-11 01:50:18 +0100260 PLOG_E("dup2('%d', _HF_INPUT_FD='%d')", run->dynamicFileFd, _HF_INPUT_FD);
261 return false;
262 }
Robert Swiecki599dee12018-01-10 02:21:58 +0100263
Robert Swieckifda81302019-01-26 23:32:40 +0100264 /* The log FD */
Robert Swiecki44894272019-01-30 12:53:54 +0100265 if ((run->global->exe.netDriver || run->global->exe.persistent)) {
266 if (dup2(logFd(), _HF_LOG_FD) == -1) {
267 PLOG_E("dup2(%d, _HF_LOG_FD=%d)", logFd(), _HF_LOG_FD);
268 return false;
269 }
270 char llstr[32];
271 snprintf(llstr, sizeof(llstr), "%d", logGetLevel());
272 setenv(_HF_LOG_LEVEL_ENV, llstr, 1);
Robert Swieckifda81302019-01-26 23:32:40 +0100273 }
274
Robert Swiecki491d7bb2017-02-28 03:02:53 +0100275 sigset_t sset;
276 sigemptyset(&sset);
277 if (sigprocmask(SIG_SETMASK, &sset, NULL) == -1) {
278 PLOG_W("sigprocmask(empty_set)");
279 }
280
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100281 if (!run->global->exe.persistent) {
Robert Swiecki1f1a2f92018-01-15 15:26:37 +0100282 if ((run->dynamicFileCopyFd = files_writeBufToTmpFile(
283 run->global->io.workDir, run->dynamicFile, run->dynamicFileSz, 0)) == -1) {
284 LOG_E("Couldn't save data to a temporary file");
285 return false;
286 }
287 if (run->global->exe.fuzzStdin && dup2(run->dynamicFileCopyFd, STDIN_FILENO) == -1) {
288 PLOG_E("dup2(_HF_INPUT_FD=%d, STDIN_FILENO=%d)", run->dynamicFileCopyFd, STDIN_FILENO);
289 return false;
290 }
Robert Swiecki3975afe2018-01-10 04:32:21 +0100291 }
Robert Swieckic8a95362018-01-10 02:29:49 +0100292
Jaggerc7743512016-08-31 22:00:19 +0200293 return true;
294}
Jagger93253f72016-09-01 22:40:12 +0200295
Robert Swieckid50ed422017-11-13 23:32:26 +0100296static bool subproc_New(run_t* run) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100297 if (run->pid) {
Jagger93253f72016-09-01 22:40:12 +0200298 return true;
299 }
dobinedf9f8d2018-01-21 13:57:02 +0100300
Jagger93253f72016-09-01 22:40:12 +0200301 int sv[2];
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100302 if (run->global->exe.persistent) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100303 if (run->persistentSock != -1) {
304 close(run->persistentSock);
Jagger82a20c02016-09-02 01:36:39 +0200305 }
306
Jaggere4dad652016-09-10 03:35:50 +0200307 int sock_type = SOCK_STREAM;
308#if defined(SOCK_CLOEXEC)
309 sock_type |= SOCK_CLOEXEC;
310#endif
311 if (socketpair(AF_UNIX, sock_type, 0, sv) == -1) {
Jagger93253f72016-09-01 22:40:12 +0200312 PLOG_W("socketpair(AF_UNIX, SOCK_STREAM, 0, sv)");
313 return false;
314 }
Robert Swieckie7294ca2017-11-11 02:46:32 +0100315 run->persistentSock = sv[0];
Jagger93253f72016-09-01 22:40:12 +0200316 }
317
Robert Swiecki158fe042018-01-10 02:33:56 +0100318 LOG_D("Forking new process for thread: %" PRId32, run->fuzzNo);
319
Robert Swiecki78633d12017-11-13 23:24:55 +0100320 run->pid = arch_fork(run);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100321 if (run->pid == -1) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200322 PLOG_E("Couldn't fork");
Robert Swiecki98e23372019-01-30 11:50:18 +0100323 run->pid = 0;
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200324 return false;
Jagger93253f72016-09-01 22:40:12 +0200325 }
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200326 /* The child process */
Robert Swieckie7294ca2017-11-11 02:46:32 +0100327 if (!run->pid) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200328 logMutexReset();
329 /*
330 * Reset sighandlers, and set alarm(1). It's a guarantee against dead-locks
331 * in the child, where we ensure here that the child process will either
332 * execve or get signaled by SIGALRM within 1 second.
Robert Swieckic337d4f2017-06-01 13:09:41 +0200333 *
334 * Those deadlocks typically stem from the fact, that malloc() can behave weirdly
335 * when fork()-ing a single thread of a process: e.g. with glibc < 2.24
336 * (or, Ubuntu's 2.23-0ubuntu6). For more see
337 * http://changelogs.ubuntu.com/changelogs/pool/main/g/glibc/glibc_2.23-0ubuntu7/changelog
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200338 */
339 alarm(1);
340 signal(SIGALRM, SIG_DFL);
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200341
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100342 if (run->global->exe.persistent) {
Jagger93253f72016-09-01 22:40:12 +0200343 if (dup2(sv[1], _HF_PERSISTENT_FD) == -1) {
344 PLOG_F("dup2('%d', '%d')", sv[1], _HF_PERSISTENT_FD);
345 }
346 close(sv[0]);
347 close(sv[1]);
348 }
349
Robert Swiecki599dee12018-01-10 02:21:58 +0100350 if (!subproc_PrepareExecv(run)) {
Jagger93253f72016-09-01 22:40:12 +0200351 LOG_E("subproc_PrepareExecv() failed");
352 exit(EXIT_FAILURE);
353 }
Robert Swiecki78633d12017-11-13 23:24:55 +0100354 if (!arch_launchChild(run)) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200355 LOG_E("Error launching child process");
Robert Swiecki82c707c2017-11-14 16:36:23 +0100356 kill(run->global->threads.mainPid, SIGTERM);
Robert Swieckia375f4b2017-06-01 13:20:54 +0200357 _exit(1);
Jagger93253f72016-09-01 22:40:12 +0200358 }
Robert Swiecki42cc9822017-02-12 22:20:46 +0100359 abort();
Jagger93253f72016-09-01 22:40:12 +0200360 }
Robert Swieckic337d4f2017-06-01 13:09:41 +0200361
362 /* Parent */
Robert Swiecki98e23372019-01-30 11:50:18 +0100363 LOG_D("Launched new process, pid=%d, thread: %" PRId32 " (concurrency: %zd)", (int)run->pid,
Robert Swiecki158fe042018-01-10 02:33:56 +0100364 run->fuzzNo, run->global->threads.threadsMax);
Robert Swiecki5eeb29b2018-01-21 16:07:06 +0100365
Robert Swiecki98e23372019-01-30 11:50:18 +0100366 arch_prepareParentAfterFork(run);
367
Robert Swiecki5cc1f7b2018-01-16 20:55:43 +0100368 if (run->global->exe.persistent) {
Anestis Bechtsoudis8171d522016-10-27 11:22:06 +0300369 close(sv[1]);
Robert Swiecki98e23372019-01-30 11:50:18 +0100370 run->runState = _HF_RS_WAITING_FOR_INITIAL_READY;
371 LOG_I("Persistent mode: Launched new persistent pid=%d", (int)run->pid);
Anestis Bechtsoudis8171d522016-10-27 11:22:06 +0300372 }
Jagger93253f72016-09-01 22:40:12 +0200373
374 return true;
375}
Jaggerd1fc9ed2016-09-02 01:06:51 +0200376
Robert Swieckid50ed422017-11-13 23:32:26 +0100377bool subproc_Run(run_t* run) {
Robert Swieckif2da05a2018-01-12 03:01:09 +0100378 run->timeStartedMillis = util_timeNowMillis();
379
Robert Swiecki78633d12017-11-13 23:24:55 +0100380 if (!subproc_New(run)) {
Robert Swiecki940a0802016-11-02 12:42:09 +0100381 LOG_E("subproc_New()");
Jaggerc4729592016-09-02 01:52:30 +0200382 return false;
383 }
Jaggerc4729592016-09-02 01:52:30 +0200384
Robert Swiecki78633d12017-11-13 23:24:55 +0100385 arch_prepareParent(run);
Robert Swiecki78633d12017-11-13 23:24:55 +0100386 arch_reapChild(run);
Robert Swiecki940a0802016-11-02 12:42:09 +0100387
388 return true;
Jaggerd1fc9ed2016-09-02 01:06:51 +0200389}
Robert Swiecki54333cd2016-09-07 17:51:48 +0200390
Robert Swieckid50ed422017-11-13 23:32:26 +0100391uint8_t subproc_System(run_t* run, const char* const argv[]) {
Robert Swiecki78633d12017-11-13 23:24:55 +0100392 pid_t pid = arch_fork(run);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200393 if (pid == -1) {
394 PLOG_E("Couldn't fork");
Robert Swieckib0a8d582016-09-09 18:13:00 +0200395 return 255;
Robert Swiecki54333cd2016-09-07 17:51:48 +0200396 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200397 if (!pid) {
Robert Swiecki1c9d8092017-06-01 02:39:09 +0200398 logMutexReset();
Robert Swiecki5dbab882017-10-20 16:00:20 +0200399
Robert Swiecki3d66b7e2018-01-17 00:21:59 +0100400 setsid();
401 util_closeStdio(
402 /* close_stdin= */ true, /* close_stdout= */ false, /* close_stderr= */ false);
403
Robert Swiecki5dbab882017-10-20 16:00:20 +0200404 sigset_t sset;
405 sigemptyset(&sset);
406 if (sigprocmask(SIG_SETMASK, &sset, NULL) == -1) {
407 PLOG_W("sigprocmask(empty_set)");
408 }
409
Robert Swiecki4e595fb2017-10-11 17:26:51 +0200410 execv(argv[0], (char* const*)&argv[0]);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200411 PLOG_F("Couldn't execute '%s'", argv[0]);
Robert Swieckib0a8d582016-09-09 18:13:00 +0200412 return 255;
Robert Swiecki54333cd2016-09-07 17:51:48 +0200413 }
414
415 int status;
416 int flags = 0;
417#if defined(__WNOTHREAD)
418 flags |= __WNOTHREAD;
Robert Swiecki4e595fb2017-10-11 17:26:51 +0200419#endif /* defined(__WNOTHREAD) */
Robert Swiecki54333cd2016-09-07 17:51:48 +0200420
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200421 for (;;) {
422 int ret = wait4(pid, &status, flags, NULL);
423 if (ret == -1 && errno == EINTR) {
424 continue;
425 }
426 if (ret == -1) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100427 PLOG_E("wait4() for process pid=%d", (int)pid);
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200428 return 255;
429 }
430 if (ret != pid) {
431 LOG_E("wait4() returned %d, but waited for %d", ret, (int)pid);
432 return 255;
433 }
434 if (WIFSIGNALED(status)) {
435 LOG_E("Command '%s' terminated with signal: %d", argv[0], WTERMSIG(status));
436 return (100 + WTERMSIG(status));
437 }
438 if (WIFEXITED(status)) {
439 if (WEXITSTATUS(status) == 0) {
440 return 0U;
441 }
442 LOG_E("Command '%s' returned with exit code %d", argv[0], WEXITSTATUS(status));
443 return 1U;
444 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200445
Robert Swiecki1ddf6742017-05-08 21:17:32 +0200446 LOG_D("wait4() returned with status: %d", status);
Robert Swiecki54333cd2016-09-07 17:51:48 +0200447 }
Robert Swiecki54333cd2016-09-07 17:51:48 +0200448}
Robert Swieckifddc0862016-10-27 12:42:46 +0200449
Robert Swieckid50ed422017-11-13 23:32:26 +0100450void subproc_checkTimeLimit(run_t* run) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100451 if (!run->global->timing.tmOut) {
Robert Swieckifddc0862016-10-27 12:42:46 +0200452 return;
453 }
454
455 int64_t curMillis = util_timeNowMillis();
Robert Swieckie7294ca2017-11-11 02:46:32 +0100456 int64_t diffMillis = curMillis - run->timeStartedMillis;
Robert Swiecki013bc9c2016-12-12 17:31:06 +0100457
Robert Swiecki371e1292017-12-18 01:10:33 +0100458 if (run->tmOutSignaled && (diffMillis > ((run->global->timing.tmOut + 1) * 1000))) {
Robert Swiecki66d3e252017-07-06 01:53:40 +0200459 /* Has this instance been already signaled due to timeout? Just, SIGKILL it */
Robert Swiecki98e23372019-01-30 11:50:18 +0100460 LOG_W("pid=%d has already been signaled due to timeout. Killing it with SIGKILL", run->pid);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100461 kill(run->pid, SIGKILL);
Robert Swiecki66d3e252017-07-06 01:53:40 +0200462 return;
463 }
464
Robert Swiecki371e1292017-12-18 01:10:33 +0100465 if ((diffMillis > (run->global->timing.tmOut * 1000)) && !run->tmOutSignaled) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100466 run->tmOutSignaled = true;
Robert Swiecki98e23372019-01-30 11:50:18 +0100467 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 +0100468 (long)run->global->timing.tmOut,
469 run->global->timing.tmoutVTALRM ? "SIGVTALRM" : "SIGKILL");
Robert Swieckieba27172017-12-18 01:12:02 +0100470 if (run->global->timing.tmoutVTALRM) {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100471 kill(run->pid, SIGVTALRM);
Robert Swieckie84b6452016-12-12 12:42:04 +0100472 } else {
Robert Swieckie7294ca2017-11-11 02:46:32 +0100473 kill(run->pid, SIGKILL);
Robert Swieckie84b6452016-12-12 12:42:04 +0100474 }
Robert Swiecki2542dc02017-11-14 03:35:59 +0100475 ATOMIC_POST_INC(run->global->cnts.timeoutedCnt);
Robert Swieckifddc0862016-10-27 12:42:46 +0200476 }
477}
Robert Swiecki4f09ce02017-02-25 22:47:55 +0100478
Robert Swieckid50ed422017-11-13 23:32:26 +0100479void subproc_checkTermination(run_t* run) {
Robert Swiecki0dde76d2017-11-16 19:25:44 +0100480 if (fuzz_isTerminating()) {
Robert Swiecki98e23372019-01-30 11:50:18 +0100481 LOG_D("Killing pid=%d", (int)run->pid);
Robert Swieckie7294ca2017-11-11 02:46:32 +0100482 kill(run->pid, SIGKILL);
Robert Swiecki4f09ce02017-02-25 22:47:55 +0100483 }
484}