media: mediatek: vcodec: Fix potential array out-of-bounds in decoder queue_setup
authorWei Chen <harperchen1110@gmail.com>
Wed, 29 Mar 2023 08:05:13 +0000 (09:05 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sat, 15 Apr 2023 07:18:56 +0000 (08:18 +0100)
commit8fbcf730cb89c3647f3365226fe7014118fa93c7
tree19db0efedcd8f75db80c4ffc0fa7e345b8ba1f49
parente2a10b3801061d05d3e3415b9b824251451cfd6c
media: mediatek: vcodec: Fix potential array out-of-bounds in decoder queue_setup

variable *nplanes is provided by user via system call argument. The
possible value of q_data->fmt->num_planes is 1-3, while the value
of *nplanes can be 1-8. The array access by index i can cause array
out-of-bounds.

Fix this bug by checking *nplanes against the array size.

Signed-off-by: Wei Chen <harperchen1110@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/mediatek/vcodec/mtk_vcodec_dec.c