mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
net/ncsi: Silence runtime memcpy() false positive warning
The memcpy() in ncsi_cmd_handler_oem deserializes nca->data into a flexible array structure that overlapping with non-flex-array members (mfr_id) intentionally. Since the mem_to_flex() API is not finished, temporarily silence this warning, since it is a false positive, using unsafe_memcpy(). Reported-by: Joel Stanley <joel@jms.id.au> Link: https://lore.kernel.org/netdev/CACPK8Xdfi=OJKP0x0D1w87fQeFZ4A2DP2qzGCRcuVbpU-9=4sQ@mail.gmail.com/ Cc: Samuel Mendoza-Jonas <sam@mendozajonas.com> Signed-off-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20221202212418.never.837-kees@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
01d0e110f2
commit
b93884eea2
@ -228,7 +228,8 @@ static int ncsi_cmd_handler_oem(struct sk_buff *skb,
|
||||
len += max(payload, padding_bytes);
|
||||
|
||||
cmd = skb_put_zero(skb, len);
|
||||
memcpy(&cmd->mfr_id, nca->data, nca->payload);
|
||||
unsafe_memcpy(&cmd->mfr_id, nca->data, nca->payload,
|
||||
/* skb allocated with enough to load the payload */);
|
||||
ncsi_cmd_build_header(&cmd->cmd.common, nca);
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user