From: Kuniyuki Iwashima Date: Wed, 13 Jul 2022 20:51:57 +0000 (-0700) Subject: ip: Fix a data-race around sysctl_fwmark_reflect. X-Git-Tag: v5.19~46^2~29^2~8 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=85d0b4dbd74b95cc492b1f4e34497d3f894f5d9a;p=mirror_ubuntu-kernels.git ip: Fix a data-race around sysctl_fwmark_reflect. While reading sysctl_fwmark_reflect, it can be changed concurrently. Thus, we need to add READ_ONCE() to its reader. Fixes: e110861f8609 ("net: add a sysctl to reflect the fwmark on replies") Signed-off-by: Kuniyuki Iwashima Signed-off-by: David S. Miller --- diff --git a/include/net/ip.h b/include/net/ip.h index 05fe313f72fa..4a15b6bcb4b8 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -384,7 +384,7 @@ void ipfrag_init(void); void ip_static_sysctl_init(void); #define IP4_REPLY_MARK(net, mark) \ - ((net)->ipv4.sysctl_fwmark_reflect ? (mark) : 0) + (READ_ONCE((net)->ipv4.sysctl_fwmark_reflect) ? (mark) : 0) static inline bool ip_is_fragment(const struct iphdr *iph) {