On Sun, Nov 5, 2017 at 11:04 PM, Eric Biggers <[email protected]> wrote: > On Sun, Nov 05, 2017 at 11:34:34AM +0100, Greg KH wrote: >> On Sun, Nov 05, 2017 at 01:05:02AM -0800, syzbot wrote: >> > Hello, >> > >> > syzkaller hit the following crash on >> > b5ac3beb5a9f0ef0ea64cd85faf94c0dc4de0e42 >> > git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/master >> > compiler: gcc (GCC) 7.1.1 20170620 >> > .config is attached >> > Raw console output is attached. >> >> And again, this would be nicer to provide something that I could >> reproduce this with... >> >> thanks, >> >> greg k-h >> > > I just saw the same crash running syzkaller. It was preceded by a fault > injection in tty_ldisc_get() here: > > ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL); > if (ld == NULL) { > put_ldops(ldops); > return ERR_PTR(-ENOMEM); > } > > So then it panics at: > > if (IS_ERR(ld)) > panic("n_tty: init_tty"); > > It seems that syzkaller needs to do a better job reproducing and reporting > bugs > that are only reproducible with fault injection.
Filed https://github.com/google/syzkaller/issues/410 for this. We try to reproduce bugs with failure injection, but somehow we failed this time. > But either way, this is a bug; > panic() is not an acceptable way of handling kmalloc failure. > > Eric > > -- > You received this message because you are subscribed to the Google Groups > "syzkaller-bugs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/syzkaller-bugs/20171105220439.GA11631%40zzz.localdomain. > For more options, visit https://groups.google.com/d/optout.

