Skip to content

Commit

Permalink
media: cedrus: Fix endless loop in cedrus_h265_skip_bits()
Browse files Browse the repository at this point in the history
The busy status bit may never de-assert if number of programmed skip
bits is incorrect, resulting in a kernel hang because the bit is polled
endlessly in the code. Fix it by adding timeout for the bit-polling.
This problem is reproducible by setting the data_bit_offset field of
the HEVC slice params to a wrong value by userspace.

Cc: [email protected]
Fixes: 7678c54 (media: cedrus: Fix decoding for some HEVC videos)
Reported-by: Nicolas Dufresne <[email protected]>
Signed-off-by: Dmitry Osipenko <[email protected]>
Signed-off-by: Nicolas Dufresne <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
digetx authored and mchehab committed Aug 30, 2022
1 parent 708938f commit 91db7a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/staging/media/sunxi/cedrus/cedrus_h265.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,9 @@ static void cedrus_h265_skip_bits(struct cedrus_dev *dev, int num)
cedrus_write(dev, VE_DEC_H265_TRIGGER,
VE_DEC_H265_TRIGGER_FLUSH_BITS |
VE_DEC_H265_TRIGGER_TYPE_N_BITS(tmp));
while (cedrus_read(dev, VE_DEC_H265_STATUS) & VE_DEC_H265_STATUS_VLD_BUSY)
udelay(1);

if (cedrus_wait_for(dev, VE_DEC_H265_STATUS, VE_DEC_H265_STATUS_VLD_BUSY))
dev_err_ratelimited(dev->dev, "timed out waiting to skip bits\n");

count += tmp;
}
Expand Down

0 comments on commit 91db7a3

Please sign in to comment.