Skip to content

Commit

Permalink
thunderbolt: usb4: Fix NVM read buffer bounds and offset issue
Browse files Browse the repository at this point in the history
commit 22c7a18 upstream.

Up to 64 bytes of data can be read from NVM in one go.
Read address must be dword aligned. Data is read into a local buffer.

If caller asks to read data starting at an unaligned address then full
dword is anyway read from NVM into a local buffer. Data is then copied
from the local buffer starting at the unaligned offset to the caller
buffer.

In cases where asked data length + unaligned offset is over 64 bytes
we need to make sure we don't read past the 64 bytes in the local
buffer when copying to caller buffer, and make sure that we don't
skip copying unaligned offset bytes from local buffer anymore after
the first round of 64 byte NVM data read.

Fixes: b040798 ("thunderbolt: Add initial support for USB4")
Cc: stable@vger.kernel.org
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
matnyman authored and gregkh committed Jun 3, 2021
1 parent 5394ae9 commit 1b4a654
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/thunderbolt/usb4.c
Expand Up @@ -108,15 +108,15 @@ static int usb4_do_read_data(u16 address, void *buf, size_t size,
unsigned int retries = USB4_DATA_RETRIES;
unsigned int offset;

offset = address & 3;
address = address & ~3;

do {
size_t nbytes = min_t(size_t, size, USB4_DATA_DWORDS * 4);
unsigned int dwaddress, dwords;
u8 data[USB4_DATA_DWORDS * 4];
size_t nbytes;
int ret;

offset = address & 3;
nbytes = min_t(size_t, size + offset, USB4_DATA_DWORDS * 4);

dwaddress = address / 4;
dwords = ALIGN(nbytes, 4) / 4;

Expand All @@ -127,6 +127,7 @@ static int usb4_do_read_data(u16 address, void *buf, size_t size,
return ret;
}

nbytes -= offset;
memcpy(buf, data + offset, nbytes);

size -= nbytes;
Expand Down

0 comments on commit 1b4a654

Please sign in to comment.