]> git.baikalelectronics.ru Git - kernel.git/commitdiff
tty: n_gsm: fix packet re-transmission without open control channel
authorDaniel Starke <daniel.starke@siemens.com>
Fri, 1 Jul 2022 06:16:50 +0000 (08:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Aug 2022 09:18:02 +0000 (11:18 +0200)
[ Upstream commit 2f45f991fdd64b5f60573f48b3aa881528ea32e0 ]

In the current implementation control packets are re-transmitted even if
the control channel closed down during T2. This is wrong.
Check whether the control channel is open before re-transmitting any
packets. Note that control channel open/close is handled by T1 and not T2
and remains unaffected by this.

Fixes: 99551fa31543 ("tty: n_gsm line discipline")
Signed-off-by: Daniel Starke <daniel.starke@siemens.com>
Link: https://lore.kernel.org/r/20220701061652.39604-7-daniel.starke@siemens.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/tty/n_gsm.c

index cab30df6119661bc40fc886da3823f948185568e..893d6f502c2ef4fc7541fe68deff628124cf4f95 100644 (file)
@@ -1382,7 +1382,7 @@ static void gsm_control_retransmit(struct timer_list *t)
        spin_lock_irqsave(&gsm->control_lock, flags);
        ctrl = gsm->pending_cmd;
        if (ctrl) {
-               if (gsm->cretries == 0) {
+               if (gsm->cretries == 0 || !gsm->dlci[0] || gsm->dlci[0]->dead) {
                        gsm->pending_cmd = NULL;
                        ctrl->error = -ETIMEDOUT;
                        ctrl->done = 1;