On 09. 11. 21, 11:39, Pavel Skripkin wrote:
My local syzbot instance hit memory leak in gsmld_attach_gsm(). The
reproducer injects allocation failure in tty_register_device(). After
this error only previous tty_register_device() calls unwinded, but not
tty_kref_get().
It leads to tty_struct leak, because ->close() won't be called in case
of ->open() failure and nothing puts tty reference.
I don't have time to check the n_gsm case now (like: are you talking
about tty->open/close or file_ops->open/close -- they behave
differently), but tty definitely calls close even if open fails.