microsoft / onefuzz

A self-hosted Fuzzing-As-A-Service platform

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Panic when searching for missing libraries

tevoinea opened this issue · comments

Information

  • Onefuzz version: 8.7.0
  • OS: Windows

Provide detailed reproduction steps (if any)

task_id: 4adb1f38-699b-4175-afba-87854d8f672f

The panic happened in the unwrap() on this line:

self.current_thread_handle = self.thread_info.get(&thread_id).unwrap().handle;

Raw logs
task failed. exit_status:ExitStatus { Code = 1, Signal = , Success = False }

 0x7ffd6a1826f1 - RtlUserThreadStart
WARN [onefuzz::libfuzzer] libfuzzer verification failed, will retry: fuzzer does not respond to '-help=1'. additional error while checking for missing shared libraries: task 97 panicked. output: Output { status: ExitStatus(ExitStatus(3221226505)), stdout: "", stderr: "" }

Stack backtrace:
 0: <unknown>
 1: <unknown>
 2: <unknown>
 3: <unknown>
 4: <unknown>
 5: <unknown>
 6: <unknown>
 7: <unknown>
 8: <unknown>
 9: <unknown>
10: <unknown>
11: <unknown>
12: <unknown>
13: <unknown>
14: <unknown>
15: <unknown>
16: BaseThreadInitThunk
17: RtlUserThreadStart
WARN [onefuzz::libfuzzer] libfuzzer verification failed, will retry: fuzzer does not respond to '-help=1'. additional error while checking for missing shared libraries: debugger error. output: Output { status: ExitStatus(ExitStatus(3221226505)), stdout: "", stderr: "" }

Stack backtrace:
 0: <unknown>
 1: <unknown>
 2: <unknown>
 3: <unknown>
 4: <unknown>
 5: <unknown>
 6: <unknown>
 7: <unknown>
 8: <unknown>
 9: <unknown>
10: <unknown>
11: <unknown>
12: <unknown>
13: <unknown>
14: <unknown>
15: <unknown>
16: BaseThreadInitThunk
17: RtlUserThreadStart
thread 'tokio-runtime-worker' panicked at 'called ``Option::unwrap()`` on a ``None`` value', debugger\src\target.rs:232:71
stack backtrace:
 0:     0x7ff7e2993cd1 - <unknown>
 1:     0x7ff7e203c8cb - <unknown>
 2:     0x7ff7e298de39 - <unknown>
 3:     0x7ff7e2993a6f - <unknown>
 4:     0x7ff7e29978ef - <unknown>
 5:     0x7ff7e29975c0 - <unknown>
 6:     0x7ff7e2997de5 - <unknown>
 7:     0x7ff7e2997ca3 - <unknown>
 8:     0x7ff7e29951e9 - <unknown>
 9:     0x7ff7e29979c4 - <unknown>
10:     0x7ff7e2b3ac15 - <unknown>
11:     0x7ff7e2b3acc2 - <unknown>
12:     0x7ff7e20f1997 - <unknown>
13:     0x7ff7e20eed65 - <unknown>
14:     0x7ff7e20ee89d - <unknown>
15:     0x7ff7e242419c - <unknown>
16:     0x7ff7e22aa4b6 - <unknown>
17:     0x7ff7e2a6a500 - <unknown>
18:     0x7ff7e2a6b36e - <unknown>
19:     0x7ff7e2a77ea4 - <unknown>
20:     0x7ff7e29a6a43 - <unknown>
21:     0x7ffd68e47614 - BaseThreadInitThunk
22:     0x7ffd6a1826f1 - RtlUserThreadStart

AB#164786