Hi All,
I am using syzkaller to fuzzing drivers.
I have created some driver-spicific-syscalls, and enabled them in the config file.
The "reproduce" in config file is set to "false", because I think it takes way too much time to do the repro work.
The "procs" config is set to 1, to eliminate the possibility of competition.
After some fuzzing, We successfully found lots of crashes, including more than 20 phone-panics.
But when trying to reproduce the panic using following command, all panic-logs failed to reboot the phone:
./syz-execprog -executor=./syz-executor -threaded=0 -collide=0 -repeat=1000 -procs=1 -cover=1 panic-log
Remove " -threaded=0 -collide=0 " didn't work also.
I change the "-cover" to "0" and run the commamd in a phone wihtout kcov enabled, all failed again.
So,
How to reproduce crash and get some 'POC' with this logs?