net/smc: Use a mutex for locking "struct smc_pnettable"
authorFabio M. De Francesco <fmdefrancesco@gmail.com>
Wed, 23 Feb 2022 10:02:52 +0000 (11:02 +0100)
committerJakub Kicinski <kuba@kernel.org>
Thu, 24 Feb 2022 17:09:33 +0000 (09:09 -0800)
commit7ff57e98fb78ad94edafbdc7435f2d745e9e6bb5
tree5f10cee5c7b7c8db519d917e50e056c2770f613a
parente13ad1443684f7afaff24cf207e85e97885256bd
net/smc: Use a mutex for locking "struct smc_pnettable"

smc_pnetid_by_table_ib() uses read_lock() and then it calls smc_pnet_apply_ib()
which, in turn, calls mutex_lock(&smc_ib_devices.mutex).

read_lock() disables preemption. Therefore, the code acquires a mutex while in
atomic context and it leads to a SAC bug.

Fix this bug by replacing the rwlock with a mutex.

Reported-and-tested-by: syzbot+4f322a6d84e991c38775@syzkaller.appspotmail.com
Fixes: 64e28b52c7a6 ("net/smc: add pnet table namespace support")
Confirmed-by: Tony Lu <tonylu@linux.alibaba.com>
Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
Acked-by: Karsten Graul <kgraul@linux.ibm.com>
Link: https://lore.kernel.org/r/20220223100252.22562-1-fmdefrancesco@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/smc/smc_pnet.c
net/smc/smc_pnet.h