Page MenuHomeFreeBSD

kqueue: on process exit, force-clear its registered signal events
ClosedPublic

Authored by kib on Nov 24 2023, 6:47 AM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 17 2025, 6:24 PM
Unknown Object (File)
Nov 23 2024, 2:29 PM
Unknown Object (File)
Nov 23 2024, 12:15 AM
Unknown Object (File)
Oct 20 2024, 4:18 PM
Unknown Object (File)
Oct 18 2024, 5:47 PM
Unknown Object (File)
Oct 17 2024, 5:07 PM
Unknown Object (File)
Oct 17 2024, 5:07 PM
Unknown Object (File)
Oct 17 2024, 5:07 PM
Subscribers

Details

Summary
Normally, process already has all its kqueue fds destroyed at the moment
p_klist is detached in exit flow. But, if the process was created with
rfork(2) with shared file descriptors, its signal knotes can survive.
Then, knlist_detach() does not destroy non-empty knlist. Later, when
owning kqueue is closed, we access freed (or rather, reused, because
struct proc is type-stable) memory by referencing p->p_klist from such
knote.

Handle this situation by deleting all knotes hanging from p_klist.

PR:     275286

Diff Detail

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