drm: bridge: sii8620: fix possible off-by-one
authorHangyu Hua <hbh25y@gmail.com>
Wed, 18 May 2022 06:58:56 +0000 (14:58 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Aug 2022 09:11:17 +0000 (11:11 +0200)
[ Upstream commit 21779cc21c732c5eff8ea1624be6590450baa30f ]

The next call to sii8620_burst_get_tx_buf will result in off-by-one
When ctx->burst.tx_count + size == ARRAY_SIZE(ctx->burst.tx_buf). The same
thing happens in sii8620_burst_get_rx_buf.

This patch also change tx_count and tx_buf to rx_count and rx_buf in
sii8620_burst_get_rx_buf. It is unreasonable to check tx_buf's size and
use rx_buf.

Fixes: e19e9c692f81 ("drm/bridge/sii8620: add support for burst eMSC transmissions")
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220518065856.18936-1-hbh25y@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/bridge/sil-sii8620.c

index b93486892f4aee361eda518f29ecfda0486b0688..9edb7af37d1e6e6945138bde43ee68993dff3845 100644 (file)
@@ -628,7 +628,7 @@ static void *sii8620_burst_get_tx_buf(struct sii8620 *ctx, int len)
        u8 *buf = &ctx->burst.tx_buf[ctx->burst.tx_count];
        int size = len + 2;
 
-       if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) {
+       if (ctx->burst.tx_count + size >= ARRAY_SIZE(ctx->burst.tx_buf)) {
                dev_err(ctx->dev, "TX-BLK buffer exhausted\n");
                ctx->error = -EINVAL;
                return NULL;
@@ -645,7 +645,7 @@ static u8 *sii8620_burst_get_rx_buf(struct sii8620 *ctx, int len)
        u8 *buf = &ctx->burst.rx_buf[ctx->burst.rx_count];
        int size = len + 1;
 
-       if (ctx->burst.tx_count + size > ARRAY_SIZE(ctx->burst.tx_buf)) {
+       if (ctx->burst.rx_count + size >= ARRAY_SIZE(ctx->burst.rx_buf)) {
                dev_err(ctx->dev, "RX-BLK buffer exhausted\n");
                ctx->error = -EINVAL;
                return NULL;