mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
libertas_tf: prevent underflow in process_cmdrequest()
[ Upstream commit3348ef6a6a] If recvlength is less than MESSAGE_HEADER_LEN (4) we would end up corrupting memory. Fixes:c305a19a0d("libertas_tf: usb specific functions") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
14e0b9bba9
commit
44e0f15b31
@@ -605,9 +605,10 @@ static inline void process_cmdrequest(int recvlength, uint8_t *recvbuff,
|
||||
{
|
||||
unsigned long flags;
|
||||
|
||||
if (recvlength > LBS_CMD_BUFFER_SIZE) {
|
||||
if (recvlength < MESSAGE_HEADER_LEN ||
|
||||
recvlength > LBS_CMD_BUFFER_SIZE) {
|
||||
lbtf_deb_usbd(&cardp->udev->dev,
|
||||
"The receive buffer is too large\n");
|
||||
"The receive buffer is invalid: %d\n", recvlength);
|
||||
kfree_skb(skb);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user