OSDN Git Service

sch_netem: fix a divide by zero in tabledist()
authorEric Dumazet <edumazet@google.com>
Wed, 18 Sep 2019 15:05:39 +0000 (08:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 5 Oct 2019 10:27:41 +0000 (12:27 +0200)
commit9601d33226baf4155960ea24a164b584e9c38ef2
tree6cc51c150f435b6d84d7fa6b15bc4ab4bedea4ff
parent4c8afdc16e45c49656cc66981f5c30ac0baf69a8
sch_netem: fix a divide by zero in tabledist()

[ Upstream commit b41d936b5ecfdb3a4abc525ce6402a6c49cffddc ]

syzbot managed to crash the kernel in tabledist() loading
an empty distribution table.

t = dist->table[rnd % dist->size];

Simply return an error when such load is attempted.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/sched/sch_netem.c