RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store()
authorAlexey Kodanev <aleksei.kodanev@bell-sw.com>
Wed, 21 Feb 2024 11:32:04 +0000 (11:32 +0000)
committerLeon Romanovsky <leon@kernel.org>
Sun, 25 Feb 2024 16:21:42 +0000 (18:21 +0200)
commit7a7b7f575a25aa68ee934ee8107294487efcb3fe
tree83ea028cc054c3d7d6f5f87c7129a6e93388cca0
parent14b526f55ba5916856126f9793309fd6de5c5e7e
RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store()

strnlen() may return 0 (e.g. for "\0\n" string), it's better to
check the result of strnlen() before using 'len - 1' expression
for the 'buf' array index.

Detected using the static analysis tool - Svace.

Fixes: dc3b66a0ce70 ("RDMA/rtrs-clt: Add a minimum latency multipath policy")
Signed-off-by: Alexey Kodanev <aleksei.kodanev@bell-sw.com>
Link: https://lore.kernel.org/r/20240221113204.147478-1-aleksei.kodanev@bell-sw.com
Acked-by: Jack Wang <jinpu.wang@ionos.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.c