]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock
authorXin Long <lucien.xin@gmail.com>
Wed, 28 Sep 2016 18:55:44 +0000 (02:55 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Sep 2016 06:08:57 +0000 (02:08 -0400)
commitf659765ec7bb8eec299143ba37f79d093a8fd815
treefbdd3dec3706dabe2ef7d83e8c78a1f4e224ceb3
parent993269d88a14b2d4d168e9be168cde5ccf6e1cc8
sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock

When sctp dumps all the ep->assocs, it needs to lock_sock first,
but now it locks sock in rcu_read_lock, and lock_sock may sleep,
which would break rcu_read_lock.

This patch is to get and hold one sock when traversing the list.
After that and get out of rcu_read_lock, lock and dump it. Then
it will traverse the list again to get the next one until all
sctp socks are dumped.

For sctp_diag_dump_one, it fixes this issue by holding asoc and
moving cb() out of rcu_read_lock in sctp_transport_lookup_process.

Fixes: 6360b73a23ca ("sctp: add the sctp_diag.c file")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/sctp_diag.c
net/sctp/socket.c