]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: annotate data-races around sk->sk_dst_pending_confirm
authorEric Dumazet <edumazet@google.com>
Thu, 21 Sep 2023 20:28:18 +0000 (20:28 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 28 Nov 2023 16:56:16 +0000 (16:56 +0000)
[ Upstream commit eb44ad4e635132754bfbcb18103f1dcb7058aedd ]

This field can be read or written without socket lock being held.

Add annotations to avoid load-store tearing.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/net/sock.h
net/core/sock.c
net/ipv4/tcp_output.c

index d148dc95c9e9c042b46f284a3524c1db12dd37ef..e19eebaf59f73b6c67e48de3a79577a070ee0cf0 100644 (file)
@@ -2083,7 +2083,7 @@ static inline void __dst_negative_advice(struct sock *sk)
                if (ndst != dst) {
                        rcu_assign_pointer(sk->sk_dst_cache, ndst);
                        sk_tx_queue_clear(sk);
-                       sk->sk_dst_pending_confirm = 0;
+                       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
                }
        }
 }
@@ -2100,7 +2100,7 @@ __sk_dst_set(struct sock *sk, struct dst_entry *dst)
        struct dst_entry *old_dst;
 
        sk_tx_queue_clear(sk);
-       sk->sk_dst_pending_confirm = 0;
+       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
        old_dst = rcu_dereference_protected(sk->sk_dst_cache,
                                            lockdep_sock_is_held(sk));
        rcu_assign_pointer(sk->sk_dst_cache, dst);
@@ -2113,7 +2113,7 @@ sk_dst_set(struct sock *sk, struct dst_entry *dst)
        struct dst_entry *old_dst;
 
        sk_tx_queue_clear(sk);
-       sk->sk_dst_pending_confirm = 0;
+       WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
        old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst);
        dst_release(old_dst);
 }
index 8faa0f9cc0839adf12363d67f71d17023ce1f692..662cd6d54ac70e2b8ef3153d6619db1c50d607b5 100644 (file)
@@ -557,7 +557,7 @@ struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie)
            INDIRECT_CALL_INET(dst->ops->check, ip6_dst_check, ipv4_dst_check,
                               dst, cookie) == NULL) {
                sk_tx_queue_clear(sk);
-               sk->sk_dst_pending_confirm = 0;
+               WRITE_ONCE(sk->sk_dst_pending_confirm, 0);
                RCU_INIT_POINTER(sk->sk_dst_cache, NULL);
                dst_release(dst);
                return NULL;
index 9d5e652c9bba1e77f783f5c5f5c8b4dbd5629957..8032ccb69463e98003cfb94ef652bb67590e2945 100644 (file)
@@ -1318,7 +1318,7 @@ static int __tcp_transmit_skb(struct sock *sk, struct sk_buff *skb,
        skb->destructor = skb_is_tcp_pure_ack(skb) ? __sock_wfree : tcp_wfree;
        refcount_add(skb->truesize, &sk->sk_wmem_alloc);
 
-       skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm);
+       skb_set_dst_pending_confirm(skb, READ_ONCE(sk->sk_dst_pending_confirm));
 
        /* Build TCP header and checksum it. */
        th = (struct tcphdr *)skb->data;