Security Advisory

CVE-2021-47321

CVE vulnerability detail — eXtreme Datacenter Security Operations

Published 2024-05-21 14:35:35
Last updated 2026-05-11 13:52:14
Assigner Linux
State PUBLISHED

Description

In the Linux kernel, the following vulnerability has been resolved: watchdog: Fix possible use-after-free by calling del_timer_sync() This drivers remove path calls del_timer(). However, that function does not wait until the timer handler finishes. This means that the timer handler may still be running after the drivers remove function has finished, which would result in a use-after-free. Fix by calling del_timer_sync(), which makes sure the timer handler has finished, and unable to re-schedule itself.