]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
rcu: handle unstable rdp in rcu_read_unlock_strict()
authorAnkur Arora <ankur.a.arora@oracle.com>
Fri, 13 Dec 2024 04:06:55 +0000 (20:06 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 29 May 2025 09:13:39 +0000 (11:13 +0200)
[ Upstream commit fcf0e25ad4c8d14d2faab4d9a17040f31efce205 ]

rcu_read_unlock_strict() can be called with preemption enabled
which can make for an unstable rdp and a racy norm value.

Fix this by dropping the preempt-count in __rcu_read_unlock()
after the call to rcu_read_unlock_strict(), adjusting the
preempt-count check appropriately.

Suggested-by: Frederic Weisbecker <frederic@kernel.org>
Signed-off-by: Ankur Arora <ankur.a.arora@oracle.com>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/linux/rcupdate.h
kernel/rcu/tree_plugin.h

index bd69ddc102fbc5bd4b8936cda3fedc586ac16848..0844ab3288519ac78d70a8c172ccbf29ef66be20 100644 (file)
@@ -95,9 +95,9 @@ static inline void __rcu_read_lock(void)
 
 static inline void __rcu_read_unlock(void)
 {
-       preempt_enable();
        if (IS_ENABLED(CONFIG_RCU_STRICT_GRACE_PERIOD))
                rcu_read_unlock_strict();
+       preempt_enable();
 }
 
 static inline int rcu_preempt_depth(void)
index 4328ff3252a354147e5052602945d99f23fe5fec..3c0bbbbb686fe2b92b3560cb0f12e7add6505636 100644 (file)
@@ -833,8 +833,17 @@ void rcu_read_unlock_strict(void)
 {
        struct rcu_data *rdp;
 
-       if (irqs_disabled() || preempt_count() || !rcu_state.gp_kthread)
+       if (irqs_disabled() || in_atomic_preempt_off() || !rcu_state.gp_kthread)
                return;
+
+       /*
+        * rcu_report_qs_rdp() can only be invoked with a stable rdp and
+        * from the local CPU.
+        *
+        * The in_atomic_preempt_off() check ensures that we come here holding
+        * the last preempt_count (which will get dropped once we return to
+        * __rcu_read_unlock().
+        */
        rdp = this_cpu_ptr(&rcu_data);
        rdp->cpu_no_qs.b.norm = false;
        rcu_report_qs_rdp(rdp);