[PW_SID:1095737] [v5] Bluetooth: hci_uart: fix UAF in hci_uart_tty_close()#199
[PW_SID:1095737] [v5] Bluetooth: hci_uart: fix UAF in hci_uart_tty_close()#199BluezTestBot wants to merge 6 commits into
Conversation
This patch adds workflow files for ci: [sync.yml] - The workflow file for scheduled work - Sync the repo with upstream repo and rebase the workflow branch - Review the patches in the patchwork and creates the PR if needed [ci.yml] - The workflow file for CI tasks - Run CI tests when PR is created Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
This replaces the bzcafe action with bluez/action-ci so we can maintain everything in the github bluez organization Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This attempts to sync every 5 minutes instead of 30. Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
bluez/action-ci uses master as default branch for workflow which is incorrect for kernel Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
The CI action now creates individual GitHub Check Runs per test, which requires 'checks: write' permission on the GITHUB_TOKEN. Also make the pull_request trigger types explicit to include 'reopened', allowing CI to be retriggered by closing and reopening a PR.
A Use-After-Free (UAF) vulnerability and a subsequent kernel panic were observed in hci_uart_write_work() due to a race condition between the initialization of the HCI UART line discipline and concurrent TTY hangup. This issue was triggered by our custom device emulation and fuzzing framework (DevGen) on the v6.18 kernel. Due to the highly timing-dependent nature of this race condition (requiring a precise interleaving of TIOCVHANGUP and protocol setup), Syzkaller failed to extract a reliable standalone C reproducer (reproducer is too unreliable: 0.00). The crash trace is as follows: ODEBUG: free active (active state 0) object: ffff88804024e870 object type: work_struct hint: hci_uart_write_work+0x0/0x940 WARNING: CPU: 0 PID: 338273 at lib/debugobjects.c:612 debug_print_object+0x1a2/0x2b0 ... Call Trace: <TASK> debug_check_no_obj_freed+0x3ec/0x520 kfree+0x3f0/0x6c0 hci_uart_tty_close+0x127/0x2a0 k_ldisc_close+0x113/0x1a0 tty_ldisc_kill+0x8e/0x150 tty_ldisc_hangup+0x3c1/0x730 __tty_hangup.part.0+0x3fd/0x8a0 tty_ioctl+0x120f/0x1690 __x64_sys_ioctl+0x18f/0x210 do_syscall_64+0xcb/0xfa0 entry_SYSCALL_64_after_hwframe+0x77/0x7f </TASK> The issue arises because the workqueues (init_ready and write_work) are only flushed/cancelled if the HCI_UART_PROTO_READY flag is set. However, during the protocol initialization phase (HCI_UART_PROTO_INIT), the underlying protocol may schedule work. If a hangup occurs before the setup completes and the READY flag is set, hci_uart_tty_close() skips the teardown of these workqueues and proceeds to free the `hu` struct. When the scheduled work executes later, it blindly dereferences the freed `hu` struct. Fix this by moving the workqueue teardown to the very beginning of hci_uart_tty_close(), outside the HCI_UART_PROTO_READY check and prior to calling hci_uart_close(). Furthermore, use disable_work_sync() instead of cancel_work_sync() to unconditionally disable the works. This ensures that any pending works are cancelled and no new submissions can occur before or during the teardown of the device connection. Note that hu->init_ready and hu->write_work are initialized in hci_uart_tty_open(), so it is always safe to call disable_work_sync() on them in hci_uart_tty_close(), even if the protocol was never fully attached. Fixes: 3b79925 ("Bluetooth: hci_uart: Cancel init work before unregistering") Cc: stable@vger.kernel.org Signed-off-by: Mingyu Wang <25181214217@stu.xidian.edu.cn>
|
CheckPatch |
|
GitLint |
|
SubjectPrefix |
|
BuildKernel |
|
CheckAllWarning |
|
CheckSparse |
|
BuildKernel32 |
|
TestRunnerSetup |
|
IncrementalBuild |
e6b705e to
133f77d
Compare
From: Mingyu Wang 25181214217@stu.xidian.edu.cn
A Use-After-Free (UAF) vulnerability and a subsequent kernel panic were
observed in hci_uart_write_work() due to a race condition between the
initialization of the HCI UART line discipline and concurrent TTY hangup.
This issue was triggered by our custom device emulation and fuzzing
framework (DevGen) on the v6.18 kernel. Due to the highly timing-dependent
nature of this race condition (requiring a precise interleaving of
TIOCVHANGUP and protocol setup), Syzkaller failed to extract a reliable
standalone C reproducer (reproducer is too unreliable: 0.00).
The crash trace is as follows:
ODEBUG: free active (active state 0) object: ffff88804024e870 object type: work_struct hint: hci_uart_write_work+0x0/0x940
WARNING: CPU: 0 PID: 338273 at lib/debugobjects.c:612 debug_print_object+0x1a2/0x2b0
...
Call Trace:
debug_check_no_obj_freed+0x3ec/0x520
kfree+0x3f0/0x6c0
hci_uart_tty_close+0x127/0x2a0
k_ldisc_close+0x113/0x1a0
tty_ldisc_kill+0x8e/0x150
tty_ldisc_hangup+0x3c1/0x730
__tty_hangup.part.0+0x3fd/0x8a0
tty_ioctl+0x120f/0x1690
__x64_sys_ioctl+0x18f/0x210
do_syscall_64+0xcb/0xfa0
entry_SYSCALL_64_after_hwframe+0x77/0x7f
The issue arises because the workqueues (init_ready and write_work) are
only flushed/cancelled if the HCI_UART_PROTO_READY flag is set. However,
during the protocol initialization phase (HCI_UART_PROTO_INIT), the
underlying protocol may schedule work. If a hangup occurs before the setup
completes and the READY flag is set, hci_uart_tty_close() skips the
teardown of these workqueues and proceeds to free the
hustruct. Whenthe scheduled work executes later, it blindly dereferences the freed
hustruct.
Fix this by moving the workqueue teardown to the very beginning of
hci_uart_tty_close(), outside the HCI_UART_PROTO_READY check and prior to
calling hci_uart_close(). Furthermore, use disable_work_sync() instead of
cancel_work_sync() to unconditionally disable the works. This ensures that
any pending works are cancelled and no new submissions can occur before or
during the teardown of the device connection. Note that hu->init_ready and
hu->write_work are initialized in hci_uart_tty_open(), so it is always safe
to call disable_work_sync() on them in hci_uart_tty_close(), even if the
protocol was never fully attached.
Fixes: 3b79925 ("Bluetooth: hci_uart: Cancel init work before unregistering")
Cc: stable@vger.kernel.org
Signed-off-by: Mingyu Wang 25181214217@stu.xidian.edu.cn
Changes in v5:
before hci_uart_close(), to prevent any concurrent re-queuing
during device shutdown and resolve Sashiko static analysis warnings.
Changes in v4:
cancel_work_sync() to prevent new work submissions during teardown.
Changes in v3:
Changes in v2:
drivers/bluetooth/hci_ldisc.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)