]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
mptcp: don't leak msk in token container
authorPaolo Abeni <pabeni@redhat.com>
Wed, 10 Jun 2020 08:49:00 +0000 (10:49 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Jun 2020 14:42:58 +0000 (16:42 +0200)
[ Upstream commit 4b5af44129d0653a4df44e5511c7d480c61c8f3c ]

If a listening MPTCP socket has unaccepted sockets at close
time, the related msks are freed via mptcp_sock_destruct(),
which in turn does not invoke the proto->destroy() method
nor the mptcp_token_destroy() function.

Due to the above, the child msk socket is not removed from
the token container, leading to later UaF.

Address the issue explicitly removing the token even in the
above error path.

Fixes: 79c0949e9a09 ("mptcp: Add key generation and token tree")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Reviewed-by: Matthieu Baerts <matthieu.baerts@tessares.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/mptcp/subflow.c

index 8968b2c065e7cf7983fb9cb31497a39353e325b4..e6feb05a93dc336346d90e3f71c700b2989d1d34 100644 (file)
@@ -393,6 +393,7 @@ static void mptcp_sock_destruct(struct sock *sk)
                sock_orphan(sk);
        }
 
+       mptcp_token_destroy(mptcp_sk(sk)->token);
        inet_sock_destruct(sk);
 }