mptcp: fix msk traversal in mptcp_nl_cmd_set_flags()
authorPaolo Abeni <pabeni@redhat.com>
Fri, 21 Jan 2022 00:35:27 +0000 (16:35 -0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 21 Jan 2022 04:24:01 +0000 (20:24 -0800)
commit8e9eacad7ec7a9cbf262649ebf1fa6e6f6cc7d82
tree913b1e25fa9640456d738fe957b7fe205cd6f542
parent6f97fde8694d5242ace94a58bc8522a70b5f77cc
mptcp: fix msk traversal in mptcp_nl_cmd_set_flags()

The MPTCP endpoint list is under RCU protection, guarded by the
pernet spinlock. mptcp_nl_cmd_set_flags() traverses the list
without acquiring the spin-lock nor under the RCU critical section.

This change addresses the issue performing the lookup and the endpoint
update under the pernet spinlock.

Fixes: 0f9f696a502e ("mptcp: add set_flags command in PM netlink")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/mptcp/pm_netlink.c