From 2bbe2f05585bb06f9c417ee8437a8077c97b0de2 Mon Sep 17 00:00:00 2001 From: Siddharth M Date: Sun, 14 Jul 2019 20:29:29 +0530 Subject: executor: add network packet injection for NetBSD * Initial Commit * working build of network packet fuzzing * Add missed csource file * pkg/csource: fix build * executor/common_bsd.h: Add comment stating reason for ifconfig create --- executor/syscalls.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'executor/syscalls.h') diff --git a/executor/syscalls.h b/executor/syscalls.h index 3665c8897..fb6b5f64f 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -15804,7 +15804,10 @@ const call_t syscalls[] = { {"symlink", 57}, {"symlinkat", 470}, {"sync", 36}, + {"syz_emit_ethernet", 0, (syscall_t)syz_emit_ethernet}, {"syz_execute_func", 0, (syscall_t)syz_execute_func}, + {"syz_extract_tcp_res", 0, (syscall_t)syz_extract_tcp_res}, + {"syz_extract_tcp_res$synack", 0, (syscall_t)syz_extract_tcp_res}, {"truncate", 200}, {"unlink", 10}, {"unlinkat", 471}, -- cgit mrf-deployment