]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
smb: client: fix hang in wait_for_response() for negproto
authorPaulo Alcantara <pc@manguebit.com>
Sun, 1 Sep 2024 00:40:28 +0000 (21:40 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Sep 2024 14:25:11 +0000 (16:25 +0200)
commitfabc4ed200f9b1ad17009c49e820dd7c2f732d0c
treebc4c2f71df145775451d38579e749bed2a0bd3dc
parente79896417c03d1cdfe446c2f50b8031015681d89
smb: client: fix hang in wait_for_response() for negproto

[ Upstream commit 7ccc1465465d78e6411b7bd730d06e7435802b5c ]

Call cifs_reconnect() to wake up processes waiting on negotiate
protocol to handle the case where server abruptly shut down and had no
chance to properly close the socket.

Simple reproducer:

  ssh 192.168.2.100 pkill -STOP smbd
  mount.cifs //192.168.2.100/test /mnt -o ... [never returns]

Cc: Rickard Andersson <rickaran@axis.com>
Signed-off-by: Paulo Alcantara (Red Hat) <pc@manguebit.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/smb/client/connect.c