tty: n_gsm: fix reset fifo race condition
authorDaniel Starke <daniel.starke@siemens.com>
Thu, 14 Apr 2022 09:42:22 +0000 (02:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 May 2022 07:14:44 +0000 (09:14 +0200)
commite0a84ae1c6624441cae1481754cf3fbf36f32e70
treec03437fe227dbc06ce7eb8038437ce7a16b7c6a8
parentf92783b7568e2ece82259d5eb5b3197684ec86f2
tty: n_gsm: fix reset fifo race condition

commit 73029a4d7161f8b6c0934553145ef574d2d0c645 upstream.

gsmtty_write() and gsm_dlci_data_output() properly guard the fifo access.
However, gsm_dlci_close() and gsmtty_flush_buffer() modifies the fifo but
do not guard this.
Add a guard here to prevent race conditions on parallel writes to the fifo.

Fixes: e1eaea46bb40 ("tty: n_gsm line discipline")
Cc: stable@vger.kernel.org
Signed-off-by: Daniel Starke <daniel.starke@siemens.com>
Link: https://lore.kernel.org/r/20220414094225.4527-17-daniel.starke@siemens.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/n_gsm.c