RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store()
[ Upstream commit 7a7b7f575a25aa68ee934ee8107294487efcb3fe ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ed3e66d86e
commit
16a5bed6d2
@ -131,7 +131,7 @@ static ssize_t mpath_policy_store(struct device *dev,
|
||||
|
||||
/* distinguish "mi" and "min-latency" with length */
|
||||
len = strnlen(buf, NAME_MAX);
|
||||
if (buf[len - 1] == '\n')
|
||||
if (len && buf[len - 1] == '\n')
|
||||
len--;
|
||||
|
||||
if (!strncasecmp(buf, "round-robin", 11) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user