aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Carlier <devnexen@gmail.com>2019-10-05 12:21:52 +0100
committerDavid Carlier <devnexen@gmail.com>2019-10-05 12:21:56 +0100
commit8cd7f3438f04f16c90edb85ff370f00f7f2980c4 (patch)
tree32dff4b1fd1a14f0621f49b88717fde0faa93a6a
parenta8ff64f704b18567fd207fcb1e55bc5bc6f3c7c8 (diff)
downloadafl++-8cd7f3438f04f16c90edb85ff370f00f7f2980c4.tar.gz
bind_to_free_cpu NetBSD's turn
-rw-r--r--include/afl-fuzz.h6
-rw-r--r--src/afl-fuzz-init.c44
2 files changed, 47 insertions, 3 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index e45a9d84..4e5276f6 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -71,14 +71,14 @@
#include <sys/ioctl.h>
#include <sys/file.h>
-#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__)
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
#include <sys/sysctl.h>
#endif /* __APPLE__ || __FreeBSD__ || __OpenBSD__ */
/* For systems that have sched_setaffinity; right now just Linux, but one
can hope... */
-#if defined(__linux__) || defined(__FreeBSD__)
+#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
#define HAVE_AFFINITY 1
#if defined(__FreeBSD__)
#include <sys/cpuset.h>
@@ -86,6 +86,8 @@
#include <pthread.h>
#include <pthread_np.h>
#define cpu_set_t cpuset_t
+#elif defined(__NetBSD__)
+#include <pthread.h>
#endif
#endif /* __linux__ */
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index 12dcafae..6599fde1 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -32,7 +32,11 @@
void bind_to_free_cpu(void) {
+#if defined(__linux__) || defined(__FreeBSD__)
cpu_set_t c;
+#elif defined(__NetBSD__)
+ cpuset_t *c;
+#endif
u8 cpu_used[4096] = {0};
u32 i;
@@ -139,9 +143,35 @@ void bind_to_free_cpu(void) {
}
ck_free(procs);
+#elif defined(__NetBSD__)
+ struct kinfo_proc2* procs;
+ size_t nprocs;
+ size_t proccount;
+ int s_name[] = {CTL_KERN, KERN_PROC2, KERN_PROC_ALL, 0, sizeof(struct kinfo_proc2), 0};
+ size_t s_name_l = sizeof(s_name) / sizeof(s_name[0]);
+
+ if (sysctl(s_name, s_name_l, NULL, &nprocs, NULL, 0) != 0) return;
+ proccount = nprocs / sizeof(struct kinfo_proc2);
+ procs = ck_alloc(nprocs * sizeof(struct kinfo_proc2));
+ s_name[5] = proccount;
+
+ if (sysctl(s_name, s_name_l, procs, &nprocs, NULL, 0) != 0) {
+
+ ck_free(procs);
+ return;
+
+ }
+
+ for (i = 0; i < proccount; i++) {
+
+ if (procs[i].p_cpuid < sizeof(cpu_used)) cpu_used[procs[i].p_cpuid] = 1;
+
+ }
+
+ ck_free(procs);
#else
#warning \
- "For this platform we do not have free CPU binding code yet. If poxxible, please supply a PR to https://github.com/vanhauser-thc/AFLplusplus"
+ "For this platform we do not have free CPU binding code yet. If possible, please supply a PR to https://github.com/vanhauser-thc/AFLplusplus"
#endif
for (i = 0; i < cpu_core_count; ++i)
@@ -166,14 +196,26 @@ void bind_to_free_cpu(void) {
cpu_aff = i;
+#if defined(__linux__) || defined(__FreeBSD__)
CPU_ZERO(&c);
CPU_SET(i, &c);
+#elif defined(__NetBSD__)
+ c = cpuset_create();
+ if (c == NULL) PFATAL("cpuset_create failed");
+
+ cpuset_set(i, c);
+#endif
#if defined(__linux__)
if (sched_setaffinity(0, sizeof(c), &c)) PFATAL("sched_setaffinity failed");
#elif defined(__FreeBSD__)
if (pthread_setaffinity_np(pthread_self(), sizeof(c), &c))
PFATAL("pthread_setaffinity failed");
+#elif defined(__NetBSD__)
+ if (pthread_setaffinity_np(pthread_self(), cpuset_size(c), c))
+ PFATAL("pthread_setaffinity failed");
+
+ cpuset_destroy(c);
#else
// this will need something for other platforms
#endif