summaryrefslogtreecommitdiff
path: root/include/linux/mnt_namespace.h
diff options
context:
space:
mode:
authorQiujun Huang <hqjagain@gmail.com>2020-03-27 11:07:51 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-04-13 10:32:52 +0200
commita6a758c223d2dd567edd3e6800798313bbcbd18b (patch)
tree77577600cff3bdc6f31b2b8477daccaa2190b7ad /include/linux/mnt_namespace.h
parent4f1640e3f156020d76b06ea794a27cd61b415513 (diff)
sctp: fix refcount bug in sctp_wfree
[ Upstream commit 5c3e82fe159622e46e91458c1a6509c321a62820 ] We should iterate over the datamsgs to move all chunks(skbs) to newsk. The following case cause the bug: for the trouble SKB, it was in outq->transmitted list sctp_outq_sack sctp_check_transmitted SKB was moved to outq->sacked list then throw away the sack queue SKB was deleted from outq->sacked (but it was held by datamsg at sctp_datamsg_to_asoc So, sctp_wfree was not called here) then migrate happened sctp_for_each_tx_datachunk( sctp_clear_owner_w); sctp_assoc_migrate(); sctp_for_each_tx_datachunk( sctp_set_owner_w); SKB was not in the outq, and was not changed to newsk finally __sctp_outq_teardown sctp_chunk_put (for another skb) sctp_datamsg_put __kfree_skb(msg->frag_list) sctp_wfree (for SKB) SKB->sk was still oldsk (skb->sk != asoc->base.sk). Reported-and-tested-by: syzbot+cea71eec5d6de256d54d@syzkaller.appspotmail.com Signed-off-by: Qiujun Huang <hqjagain@gmail.com> Acked-by: Marcelo Ricardo Leitner <mleitner@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/mnt_namespace.h')
0 files changed, 0 insertions, 0 deletions