]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
regmap: Fix race condition in hwspinlock irqsave routine
authorCheng-Yu Lee <cylee12@realtek.com>
Fri, 9 Jan 2026 03:26:33 +0000 (11:26 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 12 Jan 2026 12:25:29 +0000 (12:25 +0000)
Previously, the address of the shared member '&map->spinlock_flags' was
passed directly to 'hwspin_lock_timeout_irqsave'. This creates a race
condition where multiple contexts contending for the lock could overwrite
the shared flags variable, potentially corrupting the state for the
current lock owner.

Fix this by using a local stack variable 'flags' to store the IRQ state
temporarily.

Fixes: 8698b9364710 ("regmap: Add hardware spinlock support")
Signed-off-by: Cheng-Yu Lee <cylee12@realtek.com>
Co-developed-by: Yu-Chun Lin <eleanor.lin@realtek.com>
Signed-off-by: Yu-Chun Lin <eleanor.lin@realtek.com>
Link: https://patch.msgid.link/20260109032633.8732-1-eleanor.lin@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/base/regmap/regmap.c

index ce9be3989a218de2ad72d7d2678d4fd6299cb594..ae2215d4e61c3e53aa280bf5a555361815079a65 100644 (file)
@@ -408,9 +408,11 @@ static void regmap_lock_hwlock_irq(void *__map)
 static void regmap_lock_hwlock_irqsave(void *__map)
 {
        struct regmap *map = __map;
+       unsigned long flags = 0;
 
        hwspin_lock_timeout_irqsave(map->hwlock, UINT_MAX,
-                                   &map->spinlock_flags);
+                                   &flags);
+       map->spinlock_flags = flags;
 }
 
 static void regmap_unlock_hwlock(void *__map)