]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
net/smc: Fix af_ops of child socket pointing to released memory
authorKarsten Graul <kgraul@linux.ibm.com>
Fri, 8 Apr 2022 15:10:35 +0000 (17:10 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 14 Dec 2024 18:51:47 +0000 (19:51 +0100)
commit5e71985e855c40443244ba51e69f36627f78fb41
treee09ed6f892211f15c491bbb23bca748d095872cf
parent5cedfe8aaf1875a5305897107b7f298db4260019
net/smc: Fix af_ops of child socket pointing to released memory

commit 49b7d376abe54a49e8bd5e64824032b7c97c62d4 upstream.

Child sockets may inherit the af_ops from the parent listen socket.
When the listen socket is released then the af_ops of the child socket
points to released memory.
Solve that by restoring the original af_ops for child sockets which
inherited the parent af_ops. And clear any inherited user_data of the
parent socket.

Fixes: 8270d9c21041 ("net/smc: Limit backlog connections")
Reviewed-by: Wenjia Zhang <wenjia@linux.ibm.com>
Signed-off-by: Karsten Graul <kgraul@linux.ibm.com>
Reviewed-by: D. Wythe <alibuda@linux.alibaba.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/smc/af_smc.c