mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 13:37:36 +02:00
ip: Fix a data-race around sysctl_fwmark_reflect.
[ Upstream commit85d0b4dbd7] While reading sysctl_fwmark_reflect, it can be changed concurrently. Thus, we need to add READ_ONCE() to its reader. Fixes:e110861f86("net: add a sysctl to reflect the fwmark on replies") Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
611ba70e5a
commit
0ee76fe01f
|
|
@ -379,7 +379,7 @@ void ipfrag_init(void);
|
||||||
void ip_static_sysctl_init(void);
|
void ip_static_sysctl_init(void);
|
||||||
|
|
||||||
#define IP4_REPLY_MARK(net, mark) \
|
#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)
|
static inline bool ip_is_fragment(const struct iphdr *iph)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user