]> git.proxmox.com Git - mirror_qemu.git/commitdiff
fuzz: fix broken qtest check at rcu_disable_atfork
authorAlexander Bulekov <alxndr@bu.edu>
Thu, 18 Jun 2020 16:05:16 +0000 (12:05 -0400)
committerThomas Huth <thuth@redhat.com>
Mon, 6 Jul 2020 05:37:02 +0000 (07:37 +0200)
The qtest_enabled check introduced in d6919e4 always returns false, as
it is called prior to configure_accelerators(). Instead of trying to
skip rcu_disable_atfork in qemu_main, simply call rcu_enable_atfork in
the fuzzer, after qemu_main returns.

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Message-Id: <20200618160516.2817-1-alxndr@bu.edu>
Signed-off-by: Thomas Huth <thuth@redhat.com>
softmmu/vl.c
tests/qtest/fuzz/fuzz.c

index 3e15ee243572dbd4b6398d4f03ecda6afe819ec8..9da2e23144520ff3b7f9bbda97c1b91cfc499192 100644 (file)
@@ -3832,17 +3832,7 @@ void qemu_init(int argc, char **argv, char **envp)
                                               machine_class);
 
     os_daemonize();
-
-    /*
-     * If QTest is enabled, keep the rcu_atfork enabled, since system processes
-     * may be forked testing purposes (e.g. fork-server based fuzzing) The fork
-     * should happen before a signle cpu instruction is executed, to prevent
-     * deadlocks. See commit 73c6e40, rcu: "completely disable pthread_atfork
-     * callbacks as soon as possible"
-     */
-    if (!qtest_enabled()) {
-        rcu_disable_atfork();
-    }
+    rcu_disable_atfork();
 
     if (pid_file && !qemu_write_pidfile(pid_file, &err)) {
         error_reportf_err(err, "cannot create PID file: ");
index a44fe479db5f7dbd81c776d701e99447640d47e8..a36d9038e08b61dafcab17c4ea527e158c2ef8ff 100644 (file)
@@ -211,5 +211,8 @@ int LLVMFuzzerInitialize(int *argc, char ***argv, char ***envp)
 
     qemu_init(result.we_wordc, result.we_wordv, NULL);
 
+    /* re-enable the rcu atfork, which was previously disabled in qemu_init */
+    rcu_enable_atfork();
+
     return 0;
 }