Page MenuHomeFreeBSD

ktrace: Avoid recursion in namei()
ClosedPublic

Authored by markj on May 18 2021, 8:50 PM.
Tags
None
Referenced Files
F106137618: D30340.diff
Thu, Dec 26, 12:41 AM
Unknown Object (File)
Mon, Dec 2, 1:30 PM
Unknown Object (File)
Nov 14 2024, 2:26 AM
Unknown Object (File)
Nov 14 2024, 2:17 AM
Unknown Object (File)
Nov 6 2024, 7:16 AM
Unknown Object (File)
Oct 19 2024, 8:33 PM
Unknown Object (File)
Oct 19 2024, 8:33 PM
Unknown Object (File)
Oct 19 2024, 8:33 PM
Subscribers

Details

Summary

I tried fuzzing ktrace(2) with syzkaller and it found the following bug:
sys_ktrace() calls namei(), which may call ktrnamei(). But sys_ktrace()
also calls ktrace_enter() first, so if the caller is itself being
traced, the assertion in ktrace_enter() is triggered. And, ktrnamei()
does not check for recursion like most other ktrace ops do.

Fix the bug by simply deferring the ktrace_enter() call. I believe it
is safe to perform name resolution from sys_ktrace() even when traced.
Also make the parameter to ktrnamei() const and convert to ANSI.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable