net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed
authorXiyu Yang <xiyuyang19@fudan.edu.cn>
Sun, 29 Aug 2021 15:58:01 +0000 (23:58 +0800)
committerJakub Kicinski <kuba@kernel.org>
Tue, 31 Aug 2021 03:29:03 +0000 (20:29 -0700)
commitc66070125837900163b81a03063ddd657a7e9bfb
treeb94c6e7c9b4a2de8b4ed56af855670263ff13111
parent19a31d79219cdd66484721f564ee68293dcc6c24
net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed

The reference counting issue happens in one exception handling path of
cbq_change_class(). When failing to get tcf_block, the function forgets
to decrease the refcount of "rtab" increased by qdisc_put_rtab(),
causing a refcount leak.

Fix this issue by jumping to "failure" label when get tcf_block failed.

Fixes: 6529eaba33f0 ("net: sched: introduce tcf block infractructure")
Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn>
Reviewed-by: Cong Wang <cong.wang@bytedance.com>
Link: https://lore.kernel.org/r/1630252681-71588-1-git-send-email-xiyuyang19@fudan.edu.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/sched/sch_cbq.c