]> git.baikalelectronics.ru Git - kernel.git/commit
fix array-index-out-of-bounds in taprio_change
authorHaimin Zhang <tcs_kernel@tencent.com>
Mon, 30 Aug 2021 03:47:01 +0000 (11:47 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Sep 2021 10:26:36 +0000 (12:26 +0200)
commit4c0cdc7539859133f8603e80f099e68cddca87c4
treeeb3c254b53d683a604349c3bdd49158f2aa11a24
parent26547691851f0a6a06bcaaa9a6c0b8185bcb985a
fix array-index-out-of-bounds in taprio_change

[ Upstream commit efe487fce3061d94222c6501d7be3aa549b3dc78 ]

syzbot report an array-index-out-of-bounds in taprio_change
index 16 is out of range for type '__u16 [16]'
that's because mqprio->num_tc is lager than TC_MAX_QUEUE,so we check
the return value of netdev_set_num_tc.

Reported-by: syzbot+2b3e5fb6c7ef285a94f6@syzkaller.appspotmail.com
Signed-off-by: Haimin Zhang <tcs_kernel@tencent.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/sched/sch_taprio.c