]> git.baikalelectronics.ru Git - kernel.git/commit
net_sched: cls_route: remove the right filter from hashtable
authorCong Wang <xiyou.wangcong@gmail.com>
Sat, 14 Mar 2020 05:29:54 +0000 (22:29 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Mar 2020 08:59:32 +0000 (01:59 -0700)
commitd316a81f25ec5d14558ef2561c64013d97652b21
tree260bd9b4c8d37f9770b4b04e30663812728079d8
parent7db5e8456fb01e1c90a37e3ae3e2fe8f7c6db9a9
net_sched: cls_route: remove the right filter from hashtable

route4_change() allocates a new filter and copies values from
the old one. After the new filter is inserted into the hash
table, the old filter should be removed and freed, as the final
step of the update.

However, the current code mistakenly removes the new one. This
looks apparently wrong to me, and it causes double "free" and
use-after-free too, as reported by syzbot.

Reported-and-tested-by: syzbot+f9b32aaacd60305d9687@syzkaller.appspotmail.com
Reported-and-tested-by: syzbot+2f8c233f131943d6056d@syzkaller.appspotmail.com
Reported-and-tested-by: syzbot+9c2df9fd5e9445b74e01@syzkaller.appspotmail.com
Fixes: 644cf8045812 ("net: sched: RCU cls_route")
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Cc: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/cls_route.c