aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common.h
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2016-12-02 13:18:42 +0100
committerAndrey Konovalov <andreyknvl@google.com>2016-12-02 19:21:33 +0100
commit346fb4e5e977a0f0709a4fcdf9265f163fe32459 (patch)
treedc4d42b5e2573adf997baa68ff8db038d92fbdc1 /executor/common.h
parente4bf587846836bbdb0236d052e90af5fce3ab286 (diff)
executor: don't try to open tun if it's not enabled
Diffstat (limited to 'executor/common.h')
-rw-r--r--executor/common.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/executor/common.h b/executor/common.h
index 8df0ee1ae..19da79b5e 100644
--- a/executor/common.h
+++ b/executor/common.h
@@ -33,6 +33,7 @@
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
+#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
@@ -163,7 +164,7 @@ static void execute_command(const char* format, ...)
va_end(args);
}
-int tunfd;
+int tunfd = -1;
#define ADDR_MAX_LEN 32
@@ -224,6 +225,9 @@ static void initialize_tun(uint64_t pid)
static uintptr_t syz_emit_ethernet(uintptr_t a0, uintptr_t a1)
{
+ if (tunfd < 0)
+ return (uintptr_t)-1;
+
int64_t length = a0;
char* data = (char*)a1;
return write(tunfd, data, length);
@@ -361,7 +365,7 @@ static uintptr_t execute_syscall(int nr, uintptr_t a0, uintptr_t a1, uintptr_t a
}
}
-static void setup_main_process(uint64_t pid)
+static void setup_main_process(uint64_t pid, bool enable_tun)
{
// Don't need that SIGCANCEL/SIGSETXID glibc stuff.
// SIGCANCEL sent to main thread causes it to exit
@@ -374,7 +378,8 @@ static void setup_main_process(uint64_t pid)
install_segv_handler();
#ifdef __NR_syz_emit_ethernet
- initialize_tun(pid);
+ if (enable_tun)
+ initialize_tun(pid);
#endif
char tmpdir_template[] = "./syzkaller.XXXXXX";