kernel_samsung_a53x/arch/m68k
Michael Schmitz 8cae8705eb m68k: Fix spinlock race in kernel thread creation
[ Upstream commit da89ce46f02470ef08f0f580755d14d547da59ed ]

Context switching does take care to retain the correct lock owner across
the switch from 'prev' to 'next' tasks.  This does rely on interrupts
remaining disabled for the entire duration of the switch.

This condition is guaranteed for normal process creation and context
switching between already running processes, because both 'prev' and
'next' already have interrupts disabled in their saved copies of the
status register.

The situation is different for newly created kernel threads.  The status
register is set to PS_S in copy_thread(), which does leave the IPL at 0.
Upon restoring the 'next' thread's status register in switch_to() aka
resume(), interrupts then become enabled prematurely.  resume() then
returns via ret_from_kernel_thread() and schedule_tail() where run queue
lock is released (see finish_task_switch() and finish_lock_switch()).

A timer interrupt calling scheduler_tick() before the lock is released
in finish_task_switch() will find the lock already taken, with the
current task as lock owner.  This causes a spinlock recursion warning as
reported by Guenter Roeck.

As far as I can ascertain, this race has been opened in commit
533e6903bea0 ("m68k: split ret_from_fork(), simplify kernel_thread()")
but I haven't done a detailed study of kernel history so it may well
predate that commit.

Interrupts cannot be disabled in the saved status register copy for
kernel threads (init will complain about interrupts disabled when
finally starting user space).  Disable interrupts temporarily when
switching the tasks' register sets in resume().

Note that a simple oriw 0x700,%sr after restoring sr is not enough here
- this leaves enough of a race for the 'spinlock recursion' warning to
still be observed.

Tested on ARAnyM and qemu (Quadra 800 emulation).

Fixes: 533e6903bea0 ("m68k: split ret_from_fork(), simplify kernel_thread()")
Reported-by: Guenter Roeck <linux@roeck-us.net>
Closes: https://lore.kernel.org/all/07811b26-677c-4d05-aeb4-996cd880b789@roeck-us.net
Signed-off-by: Michael Schmitz <schmitzmic@gmail.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/20240411033631.16335-1-schmitzmic@gmail.com
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-11-19 12:26:56 +01:00
..
68000 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
amiga Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
apollo Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
atari Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
bvme6000 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
coldfire Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
configs Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
emu Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
fpsp040 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
hp300 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
ifpsp060 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
include Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
kernel m68k: Fix spinlock race in kernel thread creation 2024-11-19 12:26:56 +01:00
lib Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mac Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
math-emu Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mm Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mvme16x Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
mvme147 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
q40 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sun3 Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
sun3x Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
tools/amiga Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
install.sh Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kbuild Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.bus Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.cpu Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.debug Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.devices Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Kconfig.machine Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00