Skip to content

Commit 3a75b20

Browse files
dstarke-siemensgregkh
authored andcommitted
tty: n_gsm: fix race condition in status line change on dead connections
gsm_cleanup_mux() cleans up the gsm by closing all DLCIs, stopping all timers, removing the virtual tty devices and clearing the data queues. This procedure, however, may cause subsequent changes of the virtual modem status lines of a DLCI. More data is being added the outgoing data queue and the deleted kick timer is restarted to handle this. At this point many resources have already been removed by the cleanup procedure. Thus, a kernel panic occurs. Fix this by proving in gsm_modem_update() that the cleanup procedure has not been started and the mux is still alive. Note that writing to a virtual tty is already protected by checks against the DLCI specific connection state. Fixes: c568f70 ("tty: n_gsm: fix missing timer to handle stalled links") Cc: stable <stable@kernel.org> Signed-off-by: Daniel Starke <daniel.starke@siemens.com> Link: https://lore.kernel.org/r/20231026055844.3127-1-daniel.starke@siemens.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 6f69974 commit 3a75b20

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/tty/n_gsm.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4108,6 +4108,8 @@ static int gsm_modem_upd_via_msc(struct gsm_dlci *dlci, u8 brk)
41084108

41094109
static int gsm_modem_update(struct gsm_dlci *dlci, u8 brk)
41104110
{
4111+
if (dlci->gsm->dead)
4112+
return -EL2HLT;
41114113
if (dlci->adaption == 2) {
41124114
/* Send convergence layer type 2 empty data frame. */
41134115
gsm_modem_upd_via_data(dlci, brk);

0 commit comments

Comments
 (0)