]> git.baikalelectronics.ru Git - kernel.git/commit
mptcp: fix double-unlock in mptcp_poll
authorFlorian Westphal <fw@strlen.de>
Sat, 11 Apr 2020 19:05:01 +0000 (21:05 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 13 Apr 2020 04:04:08 +0000 (21:04 -0700)
commitc44b20f16d9dd99796289b43cfb256c30b4de9aa
tree35d3133115483b71105b54d15b5012fbe9ecfe5c
parentadc526a98590a890e5701c964ac923c7a9e25846
mptcp: fix double-unlock in mptcp_poll

mptcp_connect/28740 is trying to release lock (sk_lock-AF_INET) at:
[<ffffffff82c15869>] mptcp_poll+0xb9/0x550
but there are no more locks to release!
Call Trace:
 lock_release+0x50f/0x750
 release_sock+0x171/0x1b0
 mptcp_poll+0xb9/0x550
 sock_poll+0x157/0x470
 ? get_net_ns+0xb0/0xb0
 do_sys_poll+0x63c/0xdd0

Problem is that __mptcp_tcp_fallback() releases the mptcp socket lock,
but after recent change it doesn't do this in all of its return paths.

To fix this, remove the unlock from __mptcp_tcp_fallback() and
always do the unlock in the caller.

Also add a small comment as to why we have this
__mptcp_needs_tcp_fallback().

Fixes: 90e3b9e8f495f1 ("mptcp: fix tcp fallback crash")
Reported-by: syzbot+e56606435b7bfeea8cf5@syzkaller.appspotmail.com
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mptcp/protocol.c