summaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorStephen Douthit2017-08-07 23:11:00 +0200
committerWolfram Sang2017-08-29 22:13:50 +0200
commitba201c4f5ebe13d7819081756378777d8153f23e (patch)
tree1baf6e78eb6894fa9290f1699383f8ac71b18ce0 /drivers/i2c
parenti2c: ismt: Don't duplicate the receive length for block reads (diff)
downloadkernel-qcow2-linux-ba201c4f5ebe13d7819081756378777d8153f23e.tar.gz
kernel-qcow2-linux-ba201c4f5ebe13d7819081756378777d8153f23e.tar.xz
kernel-qcow2-linux-ba201c4f5ebe13d7819081756378777d8153f23e.zip
i2c: ismt: Return EMSGSIZE for block reads with bogus length
Compare the number of bytes actually seen on the wire to the byte count field returned by the slave device. Previously we just overwrote the byte count returned by the slave with the real byte count and let the caller figure out if the message was sane. Signed-off-by: Stephen Douthit <stephend@adiengineering.com> Tested-by: Dan Priamo <danp@adiengineering.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Cc: stable@kernel.org
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/busses/i2c-ismt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-ismt.c b/drivers/i2c/busses/i2c-ismt.c
index 9af2337eb17a..22ffcb73c185 100644
--- a/drivers/i2c/busses/i2c-ismt.c
+++ b/drivers/i2c/busses/i2c-ismt.c
@@ -341,8 +341,10 @@ static int ismt_process_desc(const struct ismt_desc *desc,
break;
case I2C_SMBUS_BLOCK_DATA:
case I2C_SMBUS_I2C_BLOCK_DATA:
+ if (desc->rxbytes != dma_buffer[0] + 1)
+ return -EMSGSIZE;
+
memcpy(data->block, dma_buffer, desc->rxbytes);
- data->block[0] = desc->rxbytes - 1;
break;
}
return 0;