On Fri, Jan 9, 2026 at 8:47 AM M Qamar <
mqama...@gmail.com> wrote:
>
> A little context. I wish to fuzz my network driver's TX path using a similar syscall sequence to that of a socket program. So adding translated syzlang descriptions is my only option? Or can I try adding them via pseudo-syscalls as well?
I'd say that depends on the amount/complexity of the required setup.
If it's simple, translating it to syzlang might be better so that
syzkaller can fuzz and mutate it. If it's tricky, pseudo syscalls or
adding more initialization code[1] may be the only realistic option.
[1] E.g.
https://github.com/google/syzkaller/blob/master/executor/common_linux.h#L1490
or in similar places.