NTB/msi: Use struct_size() helper in devm_kzalloc()
authorGustavo A. R. Silva <gustavoars@kernel.org>
Thu, 20 Jan 2022 23:02:47 +0000 (17:02 -0600)
committerJon Mason <jdmason@kudzu.us>
Sun, 23 Jan 2022 21:15:15 +0000 (16:15 -0500)
commit305325688ff924c52a6e12f92235a89536e022cf
tree087ce7127c2a41cde1a91e4a4eb7923246bdce46
parente783362eb54cd99b2cac8b3a9aeac942e6f6ac07
NTB/msi: Use struct_size() helper in devm_kzalloc()

Make use of the struct_size() helper instead of an open-coded version,
in order to avoid any potential type mistakes or integer overflows that,
in the worst scenario, could lead to heap overflows.

Also, address the following sparse warnings:
drivers/ntb/msi.c:46:23: warning: using sizeof on a flexible structure

Link: https://github.com/KSPP/linux/issues/174
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/msi.c